From: Akira Hatanaka Date: Fri, 3 Jul 2015 01:05:19 +0000 (+0000) Subject: Make corrections to r241314. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5245978472a81bd6c2814d635b7218f3f245adea;p=clang Make corrections to r241314. The return type of a function follows the signext attribute. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@241315 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/trap-fnattr.cpp b/test/CodeGenCXX/trap-fnattr.cpp index 4b7d521dfa..5a46d8c41c 100644 --- a/test/CodeGenCXX/trap-fnattr.cpp +++ b/test/CodeGenCXX/trap-fnattr.cpp @@ -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) {