[Patch testsuite patch 10/17] Add options for floatN when checking effective target...
authorJames Greenhalgh <james.greenhalgh@arm.com>
Wed, 23 Nov 2016 17:28:36 +0000 (17:28 +0000)
committerJames Greenhalgh <jgreenhalgh@gcc.gnu.org>
Wed, 23 Nov 2016 17:28:36 +0000 (17:28 +0000)
gcc/testsuite/

* lib/target-supports.exp (check_effective_target_float16): Add
options for _Float16.
(check_effective_target_float32): Add options for _Float32.
(check_effective_target_float64): Add options for _Float64.
(check_effective_target_float128): Add options for _Float128.
(check_effective_target_float32x): Add options for _Float32x.
(check_effective_target_float64x): Add options for _Float64x.
(check_effective_target_float128x): Add options for _Float128x.

From-SVN: r242780

gcc/testsuite/ChangeLog
gcc/testsuite/lib/target-supports.exp

index 99c89b60d391724e5b084c42cc8c43d7ea9a55c3..44c1f262e3542999326b33f6e90f97231aaca065 100644 (file)
@@ -1,3 +1,14 @@
+2016-11-23  James Greenhalgh  <james.greenhalgh@arm.com>
+
+       * lib/target-supports.exp (check_effective_target_float16): Add
+       options for _Float16.
+       (check_effective_target_float32): Add options for _Float32.
+       (check_effective_target_float64): Add options for _Float64.
+       (check_effective_target_float128): Add options for _Float128.
+       (check_effective_target_float32x): Add options for _Float32x.
+       (check_effective_target_float64x): Add options for _Float64x.
+       (check_effective_target_float128x): Add options for _Float128x.
+
 2016-11-23  James Greenhalgh  <james.greenhalgh@arm.com>
 
        * gcc.dg/fpermitted-flt-eval-methods_3.c: New.
index 201bbf393d0f1c1cf54e69e9a730ecaaa85bc59d..624c2e29f7c50904c9cd58d322a60894b2c60c60 100644 (file)
@@ -2527,43 +2527,43 @@ proc check_effective_target_has_q_floating_suffix { } {
 proc check_effective_target_float16 {} {
     return [check_no_compiler_messages_nocache float16 object {
         _Float16 x;
-    }]
+    } [add_options_for_float16 ""]]
 }
 
 proc check_effective_target_float32 {} {
     return [check_no_compiler_messages_nocache float32 object {
         _Float32 x;
-    }]
+    } [add_options_for_float32 ""]]
 }
 
 proc check_effective_target_float64 {} {
     return [check_no_compiler_messages_nocache float64 object {
         _Float64 x;
-    }]
+    } [add_options_for_float64 ""]]
 }
 
 proc check_effective_target_float128 {} {
     return [check_no_compiler_messages_nocache float128 object {
         _Float128 x;
-    }]
+    } [add_options_for_float128 ""]]
 }
 
 proc check_effective_target_float32x {} {
     return [check_no_compiler_messages_nocache float32x object {
         _Float32x x;
-    }]
+    } [add_options_for_float32x ""]]
 }
 
 proc check_effective_target_float64x {} {
     return [check_no_compiler_messages_nocache float64x object {
         _Float64x x;
-    }]
+    } [add_options_for_float64x ""]]
 }
 
 proc check_effective_target_float128x {} {
     return [check_no_compiler_messages_nocache float128x object {
         _Float128x x;
-    }]
+    } [add_options_for_float128x ""]]
 }
 
 # Likewise, but runtime support for any special options used as well