blob: 7fc8da33c459f0e4b1ddc9db77685fbaa4a65902 [file] [log] [blame]
// RUN: %clang_cc1 -emit-llvm %s -o -
// PR1708
void __attribute__((noreturn)) abort(void);
struct s { _Complex unsigned short x; };
struct s gs = { 100 + 200i };
struct s __attribute__((noinline)) foo (void) { return gs; }
int main (void)
{
if (foo ().x != gs.x)
abort ();
exit (0);
}