We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ffd88d commit 218935dCopy full SHA for 218935d
clang/test/CodeGenCXX/default-constructor-for-members.cpp
@@ -1,8 +1,7 @@
1
-// REQUIRES: x86-registered-target,x86-64-registered-target
2
-// RUN: %clang_cc1 -triple x86_64-apple-darwin -S %s -o %t-64.s
3
-// RUN: FileCheck -check-prefix CHECK-LP64 --input-file=%t-64.s %s
4
-// RUN: %clang_cc1 -triple i386-apple-darwin -S %s -o %t-32.s
5
-// RUN: FileCheck -check-prefix CHECK-LP32 --input-file=%t-32.s %s
+// RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-llvm %s -o - | \
+// RUN: FileCheck %s
+// RUN: %clang_cc1 -triple i386-apple-darwin -emit-llvm %s -o - | \
6
7
extern "C" int printf(...);
8
@@ -19,6 +18,4 @@ int main() {
19
18
M m1;
20
}
21
22
-// CHECK-LP64: callq __ZN1SC1Ev
23
-
24
-// CHECK-LP32: calll L__ZN1SC1Ev
+// CHECK: call void @_ZN1SC1Ev
0 commit comments