summaryrefslogtreecommitdiff
path: root/libphobos
diff options
context:
space:
mode:
authorIain Buclaw <ibuclaw@gdcproject.org>2021-04-05 14:05:28 +0200
committerIain Buclaw <ibuclaw@gdcproject.org>2021-04-06 19:43:30 +0200
commitdddf3bb0c37e8ff7f2c0488a46edfa18716d8a00 (patch)
treeeced0751b8257b387c90eb2d1a0ac72a779a7d8b /libphobos
parent406f58e1e38e92e4b881f3666b596843da308783 (diff)
d: Merge upstream dmd 5cc71ff83, druntime 1134b710
D front-end changes: - Fix ICEs that occurred when using opaque enums. - Update `pragma(printf)' checking code to work on 16-bit targets. Phobos change: - Don't compile in argTypes code on AArch64 Reviewed-on: https://github.com/dlang/dmd/pull/12378 https://github.com/dlang/druntime/pull/3431 gcc/d/ChangeLog: * dmd/MERGE: Merge upstream dmd 5cc71ff83. libphobos/ChangeLog: * libdruntime/MERGE: Merge upstream druntime 1134b710.
Diffstat (limited to 'libphobos')
-rw-r--r--libphobos/libdruntime/MERGE2
-rw-r--r--libphobos/libdruntime/object.d2
2 files changed, 2 insertions, 2 deletions
diff --git a/libphobos/libdruntime/MERGE b/libphobos/libdruntime/MERGE
index b797682a4d9..d839a08c19b 100644
--- a/libphobos/libdruntime/MERGE
+++ b/libphobos/libdruntime/MERGE
@@ -1,4 +1,4 @@
-483bc12977af3c1288fd52e7b4fa14b716896c5a
+1134b71039881464e9bf021836d82796b3a1fcfc
The first line of this file holds the git revision number of the last
merge done from the dlang/druntime repository.
diff --git a/libphobos/libdruntime/object.d b/libphobos/libdruntime/object.d
index c05643bf36d..e96d1c48563 100644
--- a/libphobos/libdruntime/object.d
+++ b/libphobos/libdruntime/object.d
@@ -42,7 +42,7 @@ else version (X86_64)
else version (Windows) { /* no need for Win64 ABI */ }
else version = WithArgTypes;
}
-version (AArch64)
+else version (AArch64)
{
// Apple uses a trivial varargs implementation
version (OSX) {}