r312181 - Fix tests for ARM targets
Douglas Yung via cfe-commits
cfe-commits at lists.llvm.org
Wed Aug 30 15:30:08 PDT 2017
Author: dyung
Date: Wed Aug 30 15:30:08 2017
New Revision: 312181
URL: http://llvm.org/viewvc/llvm-project?rev=312181&view=rev
Log:
Fix tests for ARM targets
Tests fail on ARM targets due to ABI name between define and void. Added reg ex to skip.
Patch by Glenn Howe (and expanded on by Douglas Yung)!
Differential Revision: https://reviews.llvm.org/D33410
Modified:
cfe/trunk/test/CodeGen/profile-sample-accurate.c
cfe/trunk/test/CodeGen/thinlto-emit-llvm.c
cfe/trunk/test/Integration/thinlto_profile_sample_accurate.c
Modified: cfe/trunk/test/CodeGen/profile-sample-accurate.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/profile-sample-accurate.c?rev=312181&r1=312180&r2=312181&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/profile-sample-accurate.c (original)
+++ cfe/trunk/test/CodeGen/profile-sample-accurate.c Wed Aug 30 15:30:08 2017
@@ -1,7 +1,7 @@
// Test to ensure -emit-llvm profile-sample-accurate is honored by clang.
// RUN: %clang -S -emit-llvm %s -fprofile-sample-accurate -o - | FileCheck %s
-// CHECK: define void @foo()
+// CHECK: define {{.*}} void @foo()
// CHECK: attributes {{.*}} "profile-sample-accurate"
void foo() {
}
Modified: cfe/trunk/test/CodeGen/thinlto-emit-llvm.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/thinlto-emit-llvm.c?rev=312181&r1=312180&r2=312181&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/thinlto-emit-llvm.c (original)
+++ cfe/trunk/test/CodeGen/thinlto-emit-llvm.c Wed Aug 30 15:30:08 2017
@@ -5,6 +5,6 @@
// RUN: %clang_cc1 -O2 -x ir %t.o -fthinlto-index=%t.thinlto.bc -emit-llvm -o - | FileCheck %s
// RUN: %clang_cc1 -O2 -x ir %t.o -fthinlto-index=%t.thinlto.bc -emit-llvm-bc -o - | llvm-dis -o - | FileCheck %s
-// CHECK: define void @foo()
+// CHECK: define {{.*}} void @foo()
void foo() {
}
Modified: cfe/trunk/test/Integration/thinlto_profile_sample_accurate.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Integration/thinlto_profile_sample_accurate.c?rev=312181&r1=312180&r2=312181&view=diff
==============================================================================
--- cfe/trunk/test/Integration/thinlto_profile_sample_accurate.c (original)
+++ cfe/trunk/test/Integration/thinlto_profile_sample_accurate.c Wed Aug 30 15:30:08 2017
@@ -3,7 +3,7 @@
// RUN: llvm-lto -thinlto -o %t %t.o
// RUN: %clang_cc1 -O2 -x ir %t.o -fthinlto-index=%t.thinlto.bc -emit-llvm -o - | FileCheck %s
-// CHECK: define void @foo()
+// CHECK: define {{.*}} void @foo()
// CHECK: attributes {{.*}} "profile-sample-accurate"
void foo() {
}
More information about the cfe-commits
mailing list