summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2014-12-31 00:06:08 +0000
committerDavid Blaikie <dblaikie@gmail.com>2014-12-31 00:06:08 +0000
commitf936984e33b466733e7e8fd6cc7182b1209cbe21 (patch)
tree37c1acc2a5118c8418d0ec9519b4e412f26a9e11
parentFix a test case to not depend on asm comment syntax, so as to be portable (diff)
downloadllvm-project-f936984e33b466733e7e8fd6cc7182b1209cbe21.tar.gz
llvm-project-f936984e33b466733e7e8fd6cc7182b1209cbe21.tar.bz2
llvm-project-f936984e33b466733e7e8fd6cc7182b1209cbe21.zip
Handle PPC64 return type (signext i32 rather than plain i32) in test case
llvm-svn: 225021
-rw-r--r--clang/test/CodeGenCXX/debug-info-line.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/debug-info-line.cpp b/clang/test/CodeGenCXX/debug-info-line.cpp
index c0e624df1af1..4e1177e0fa4f 100644
--- a/clang/test/CodeGenCXX/debug-info-line.cpp
+++ b/clang/test/CodeGenCXX/debug-info-line.cpp
@@ -123,7 +123,7 @@ __complex double f11() {
void f12() {
int f12_1();
void f12_2(int = f12_1());
-// CHECK: call i32 {{.*}} !dbg [[DBG_F12:!.*]]
+// CHECK: call {{(signext )?}}i32 {{.*}} !dbg [[DBG_F12:!.*]]
#line 1300
f12_2();
}