Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenCXX / arm-vaarg.cpp
bloba9ba346fa0c6ec41d74b84aafee7da54ab125898
1 // RUN: %clang_cc1 -triple armv7-apple-ios -emit-llvm -o - %s | FileCheck %s
2 struct Empty {};
4 Empty emptyvar;
6 int take_args(int a, ...) {
7 __builtin_va_list l;
8 __builtin_va_start(l, a);
9 // CHECK: call void @llvm.va_start
11 emptyvar = __builtin_va_arg(l, Empty);
12 // CHECK: load ptr, ptr
14 // It's conceivable that EMPTY_PTR may not actually be a valid pointer
15 // (e.g. it's at the very bottom of the stack and the next page is
16 // invalid). This doesn't matter provided it's never loaded (there's no
17 // well-defined way to tell), but it becomes a problem if we do try to use it.
18 // CHECK-NOT: load %struct.Empty, ptr {{%[a-zA-Z0-9._]+}}
20 int i = __builtin_va_arg(l, int);
21 // CHECK: load i32, ptr
23 __builtin_va_end(l);
24 return i;