Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenCXX / vararg-conversion-ctor.cpp
blob0c2d401f7fbe69c1135ab57e69ed7bbd1e30c35f
1 // RUN: %clang_cc1 -triple x86_64-apple-darwin -std=c++11 -emit-llvm %s -o %t-64.ll
2 // RUN: FileCheck -check-prefix CHECK-LPLL64 --input-file=%t-64.ll %s
4 extern "C" int printf(...);
6 struct A {
7 A(...) {
8 printf("A::A(...)\n");
9 }
12 A a(1.34);
14 A b = 2.34;
16 int main()
18 A c[3];
21 // CHECK-LPLL64: call void (ptr, ...)
22 // CHECK-LPLL64: call void (ptr, ...)
23 // CHECK-LPLL64: call void (ptr, ...)