]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/testsuite/gdc.test/compilable/cdcmp.d
Merge remote-tracking branch 'origin/master' into devel/c++-contracts
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / cdcmp.d
index 305f097bd81f595800faf5d01b9ba51d0dbb80b9..16abde0bd5b0f7303fdd3a9e6c8c7f4c366b79ed 100644 (file)
@@ -60,20 +60,6 @@ bool test_nez(long x) { return x != 0; }
 bool test_gez(long x) { return x >= 0; }
 bool test_gtz(long x) { return x >  0; }
 
-bool test_ltz(float x) { return x <  0; }
-bool test_lez(float x) { return x <= 0; }
-bool test_eqz(float x) { return x == 0; }
-bool test_nez(float x) { return x != 0; }
-bool test_gez(float x) { return x >= 0; }
-bool test_gtz(float x) { return x >  0; }
-
-bool test_ltz(double x) { return x <  0; }
-bool test_lez(double x) { return x <= 0; }
-bool test_eqz(double x) { return x == 0; }
-bool test_nez(double x) { return x != 0; }
-bool test_gez(double x) { return x >= 0; }
-bool test_gtz(double x) { return x >  0; }
-
 /* ----------------------------------- */
 
 bool test_lt(ubyte x, ubyte y) { return x <  y; }