f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
15 lines
293 B
C
15 lines
293 B
C
// 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 ()
|
|
{
|
|
if (foo ().x != gs.x)
|
|
abort ();
|
|
exit (0);
|
|
}
|