d: Merge upstream dmd f8a1a5153, druntime 2b5c0b27
authorIain Buclaw <ibuclaw@gdcproject.org>
Sun, 26 Apr 2020 23:43:34 +0000 (01:43 +0200)
committerIain Buclaw <ibuclaw@gdcproject.org>
Mon, 27 Apr 2020 00:47:27 +0000 (02:47 +0200)
Adds a new test directive COMPILABLE_MATH_TEST, and support has been
added for it in gdc-convert-test so that they are skipped if phobos is
not present on the target.

Only change in D runtime is a small documentation fix.

Reviewed-on: https://github.com/dlang/druntime/pull/3067
     https://github.com/dlang/dmd/pull/11060

gcc/testsuite/ChangeLog:

PR d/89418
* lib/gdc-utils.exp (gdc-convert-test): Add dg-skip-if for compilable
tests that depend on the phobos standard library.

gcc/d/dmd/MERGE
gcc/testsuite/ChangeLog
gcc/testsuite/gdc.test/compilable/ctfe_math.d
gcc/testsuite/gdc.test/compilable/test5227.d
gcc/testsuite/lib/gdc-utils.exp
libphobos/libdruntime/MERGE
libphobos/libdruntime/core/internal/convert.d

index a878cb9f42ea85edffe1cb882412bde6233ffd2f..f933cf1c9920cd8dd63350d27488729fccbebccb 100644 (file)
@@ -1,4 +1,4 @@
-09db0c41ee922502fa0966bde24c1cb9b15ad436
+f8a1a515346b16ebbd9da56a908540cbef1ee582
 
 The first line of this file holds the git revision number of the last
 merge done from the dlang/dmd repository.
index 1f412a0ef1dc0509b506f35dbc8894e9e661a6de..d6529ea7d1f466fccd7be661dd09bcbbe762e998 100644 (file)
@@ -1,3 +1,9 @@
+2020-04-27  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       PR d/89418
+       * lib/gdc-utils.exp (gdc-convert-test): Add dg-skip-if for compilable
+       tests that depend on the phobos standard library.
+
 2020-04-27  Iain Buclaw  <ibuclaw@gdcproject.org>
 
        PR d/94777
index 78de869d09064373728554586b9ed20d8712cc01..334b75ac941484b96f8f48db509b002b4c555624 100644 (file)
@@ -1,3 +1,4 @@
+// COMPILABLE_MATH_TEST
 // Test CTFE builtins for std.math functions.
 
 import std.math;
index c270b79245b902ace6ed3260cbf76ac1aaebc354..63ca752f4fba8f0600422456b45c722323b72da5 100644 (file)
@@ -1,4 +1,5 @@
 /*
+COMPILABLE_MATH_TEST
 REQUIRED_ARGS:
 PERMUTE_ARGS:
 TEST_OUTPUT:
index 87d1105a9dbe683839ea94cfb9b978548cfcceed..5c17346dbf5825090eab255053246212385387e0 100644 (file)
@@ -302,6 +302,12 @@ proc gdc-convert-test { base test } {
            # It will need skipping if phobos is not available on the target.
            regsub -- {RUNNABLE_PHOBOS_TEST.*$} $copy_line "" out_line
            set needs_phobos 1
+
+       } elseif [regexp -- {COMPILABLE_MATH_TEST} $copy_line match sources] {
+           # COMPILABLE_MATH_TEST annotates tests that import the std.math
+           # module.  Which will need skipping if not available on the target.
+           regsub -- {RUNNABLE_PHOBOS_TEST.*$} $copy_line "" out_line
+           set needs_phobos 1
        }
 
        puts $fdout $out_line
@@ -358,6 +364,9 @@ proc gdc-convert-test { base test } {
                # Cleanup extra generated files.
                puts $fdout "// { dg-final { file delete $genfile } }"
            }
+           if $needs_phobos {
+               puts $fdout "// { dg-skip-if \"imports phobos\" { ! d_runtime_has_std_library } }"
+           }
        }
 
        fail_compilation {
index 8b461f76ad0085761f1aaba5d1aec9e1867cb356..e3763485adfd261d9f065b34fc62a94e9af85bbc 100644 (file)
@@ -1,4 +1,4 @@
-e68a5ae36790fa9dc5bab6155bc450eb6bf8c12c
+2b5c0b2766949e788e4929c5fb0e2ba698ff79a3
 
 The first line of this file holds the git revision number of the last
 merge done from the dlang/druntime repository.
index 3d2cb59a64a3a267abec15049f845ff41c07f735..0f540f83d4260ddce5dc709ecc2672e6fcdd70af 100644 (file)
@@ -73,8 +73,8 @@ const(ubyte)[] toUbyte(T)(const ref T val) if (is(Unqual!T == float) || is(Unqua
             // Parse DoubleDoubles as a pair of doubles.
             // The layout of the type is:
             //
-            //   [1|  7  |       56      ][   8    |       56       ]
-            //   [S| Exp | Fraction (hi) ][ Unused | Fraction (low) ]
+            //   [1|    11    |       52      ][1|    11    |       52       ]
+            //   [S| Exponent | Fraction (hi) ][S| Exponent | Fraction (low) ]
             //
             // We can get the least significant bits by subtracting the IEEE
             // double precision portion from the real value.