bolt/deps/llvm-18.1.8/clang/test/CodeGen/2007-09-05-ConstCtor.c

15 lines
211 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clang_cc1 -Os -emit-llvm %s -o /dev/null
// PR1641
struct A {
unsigned long l;
};
void bar(struct A *a);
void bork(void) {
const unsigned long vcgt = 1234;
struct A a = { vcgt };
bar(&a);
}