aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/constexpr-53094-2.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/constexpr-53094-2.C')
-rw-r--r--gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/constexpr-53094-2.C8
1 files changed, 0 insertions, 8 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/constexpr-53094-2.C b/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/constexpr-53094-2.C
deleted file mode 100644
index 3f66c4eb7..000000000
--- a/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/constexpr-53094-2.C
+++ /dev/null
@@ -1,8 +0,0 @@
-// { dg-do compile }
-// { dg-options "-std=gnu++11" }
-// Ignore warning on some powerpc-ibm-aix configurations.
-// { dg-prune-output "non-standard ABI extension" }
-
-typedef float __attribute__ ((vector_size (4 * sizeof (float)))) V4;
-constexpr V4 build (float x, float y, float z) { return (V4){ x, y, z, 0 };}
-constexpr V4 x = build (1, 0, 0);