bolt/deps/llvm-18.1.8/clang/test/CodeGen/2007-09-27-ComplexIntCompare.c

17 lines
339 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
// 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);
}