Mercurial > hg > CbC > CbC_llvm
view clang/test/CodeGenCXX/vararg-conversion-ctor.cpp @ 206:f17a3b42b08b
Added tag before-12 for changeset b7591485f4cd
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 07 Jun 2021 21:25:57 +0900 |
parents | 1d019706d866 |
children | c4bab56944e8 |
line wrap: on
line source
// 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*, ...)