aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/2007-09-27-ComplexIntCompare.c
blob: f116aa717d7b83b65cb571a222e810ff4f2788b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// RUN: %clang_cc1 -emit-llvm %s -o -
// PR1708

void __attribute__((noreturn)) abort(void);
void __attribute__((noreturn)) exit(int);

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);
}