[cfe-commits] r164239 - in /cfe/trunk/test/CodeGenCXX: compound-literals.cpp throw-expression-cleanup.cpp
David Blaikie
dblaikie at gmail.com
Wed Sep 19 11:46:03 PDT 2012
Author: dblaikie
Date: Wed Sep 19 13:46:03 2012
New Revision: 164239
URL: http://llvm.org/viewvc/llvm-project?rev=164239&view=rev
Log:
Fix ABI dependent tests by providing an explicit target triple.
Patch by Joey Gouly.
Modified:
cfe/trunk/test/CodeGenCXX/compound-literals.cpp
cfe/trunk/test/CodeGenCXX/throw-expression-cleanup.cpp
Modified: cfe/trunk/test/CodeGenCXX/compound-literals.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/compound-literals.cpp?rev=164239&r1=164238&r2=164239&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/compound-literals.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/compound-literals.cpp Wed Sep 19 13:46:03 2012
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
+// RUN: %clang_cc1 -triple armv7-none-eabi -emit-llvm -o - %s | FileCheck %s
struct X {
X();
@@ -18,10 +18,10 @@
// CHECK-NEXT: [[I:%[a-z0-9]+]] = getelementptr inbounds {{.*}}* [[LVALUE]], i32 0, i32 0
// CHECK-NEXT: store i32 17, i32* [[I]]
// CHECK-NEXT: [[X:%[a-z0-9]+]] = getelementptr inbounds {{.*}} [[LVALUE]], i32 0, i32 1
- // CHECK-NEXT: call void @_ZN1XC1EPKc({{.*}}[[X]]
+ // CHECK-NEXT: call %struct.X* @_ZN1XC1EPKc({{.*}}[[X]]
// CHECK-NEXT: [[I:%[a-z0-9]+]] = getelementptr inbounds {{.*}} [[LVALUE]], i32 0, i32 0
// CHECK-NEXT: [[RESULT:%[a-z0-9]+]] = load i32*
- // CHECK-NEXT: call void @_ZN1YD1Ev
+ // CHECK-NEXT: call %struct.Y* @_ZN1YD1Ev
// CHECK-NEXT: ret i32 [[RESULT]]
return ((Y){17, "seventeen"}).i;
}
Modified: cfe/trunk/test/CodeGenCXX/throw-expression-cleanup.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/throw-expression-cleanup.cpp?rev=164239&r1=164238&r2=164239&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/throw-expression-cleanup.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/throw-expression-cleanup.cpp Wed Sep 19 13:46:03 2012
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 %s -emit-llvm -fcxx-exceptions -fexceptions -std=c++11 -o - | FileCheck %s
+// RUN: %clang_cc1 %s -triple x86_64-none-linux-gnu -emit-llvm -fcxx-exceptions -fexceptions -std=c++11 -o - | FileCheck %s
// PR13359
struct X {
More information about the cfe-commits
mailing list