summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/vararg-conversion-ctor.cpp
blob: e496f6dcd116a1921cbc927a102e9257af94c6ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// RUN: %clang_cc1 -triple x86_64-apple-darwin -std=c++11 -emit-llvm %s -o %t-64.ll
// RUN: FileCheck -check-prefix CHECK-LPLL64 --input-file=%t-64.ll %s

extern "C" int printf(...);

struct A { 
  A(...) {
    printf("A::A(...)\n"); 
  } 
};

A a(1.34);

A b = 2.34;

int main()
{
  A c[3];
}

// CHECK-LPLL64: call void (%struct.A*, ...)
// CHECK-LPLL64: call void (%struct.A*, ...)
// CHECK-LPLL64: call void (%struct.A*, ...)