r225021 - Handle PPC64 return type (signext i32 rather than plain i32) in test case
David Blaikie
dblaikie at gmail.com
Tue Dec 30 16:06:08 PST 2014
Author: dblaikie
Date: Tue Dec 30 18:06:08 2014
New Revision: 225021
URL: http://llvm.org/viewvc/llvm-project?rev=225021&view=rev
Log:
Handle PPC64 return type (signext i32 rather than plain i32) in test case
Modified:
cfe/trunk/test/CodeGenCXX/debug-info-line.cpp
Modified: cfe/trunk/test/CodeGenCXX/debug-info-line.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/debug-info-line.cpp?rev=225021&r1=225020&r2=225021&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/debug-info-line.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/debug-info-line.cpp Tue Dec 30 18:06:08 2014
@@ -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();
}
More information about the cfe-commits
mailing list