brintos

brintos / llvm-project-archived public Read only

0
0
Text · 261 B · f89ec74 Raw
17 lines · c
1// RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-llvm -o - %s| FileCheck %s2 3// CHECK: declare void @func(i64, double)4typedef struct _str {5  union {6    long double a;7    long c;8  };9} str;10 11void func(str s);12str ss;13void f9122143(void)14{15  func(ss);16}17