]> granicus.if.org Git - clang/commitdiff
Fix test case to appease buildbot.
authorAkira Hatanaka <ahatanaka@apple.com>
Fri, 3 Jul 2015 00:50:30 +0000 (00:50 +0000)
committerAkira Hatanaka <ahatanaka@apple.com>
Fri, 3 Jul 2015 00:50:30 +0000 (00:50 +0000)
Test case trap-fnattr.cpp was failng on clang-ppc64-elf-linux2 because ppc64
sign-extends the i32 return value.

This is a follow-up to r241306.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@241314 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGenCXX/trap-fnattr.cpp

index d9d6f81599c98e372e7a9088304237c83220b3eb..4b7d521dfaa404f681f52019154944d956c11f93 100644 (file)
@@ -11,19 +11,19 @@ void test_builtin(void) {
   __builtin_trap();
 }
 
-// TRAPFUNC-LABEL: define i32 @_Z13test_noreturnv
+// TRAPFUNC-LABEL: define i32 {{.*}}@_Z13test_noreturnv
 // TRAPFUNC: call void @llvm.trap() [[ATTR0]]
 
-// NOOPTION-LABEL: define i32 @_Z13test_noreturnv
+// NOOPTION-LABEL: define i32 {{.*}}@_Z13test_noreturnv
 // NOOPTION: call void @llvm.trap(){{$}}
 
 int test_noreturn(void) {
 }
 
-// TRAPFUNC-LABEL: define i32 @_Z17test_add_overflowii
+// TRAPFUNC-LABEL: define i32 {{.*}}@_Z17test_add_overflowii
 // TRAPFUNC: call void @llvm.trap() [[ATTR1:#[0-9]+]]
 
-// NOOPTION-LABEL: define i32 @_Z17test_add_overflowii
+// NOOPTION-LABEL: define i32 {{.*}}@_Z17test_add_overflowii
 // NOOPTION: call void @llvm.trap() [[ATTR2:#[0-9]+]]
 
 int test_add_overflow(int a, int b) {