blob: 3f66c4eb74b403be1b220325f587f69ded0beb6d [file] [log] [blame]
// { 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);