r178471 - Modifed debug-info-byval.cpp test to grep for .string or .asciz.
Jyotsna Verma
jverma at codeaurora.org
Mon Apr 1 08:59:25 PDT 2013
Author: jverma
Date: Mon Apr 1 10:59:25 2013
New Revision: 178471
URL: http://llvm.org/viewvc/llvm-project?rev=178471&view=rev
Log:
Modifed debug-info-byval.cpp test to grep for .string or .asciz.
The assembly output for Hexagon contains ".string missing_arg".
Modified:
cfe/trunk/test/CodeGenCXX/debug-info-byval.cpp
Modified: cfe/trunk/test/CodeGenCXX/debug-info-byval.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/debug-info-byval.cpp?rev=178471&r1=178470&r2=178471&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/debug-info-byval.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/debug-info-byval.cpp Mon Apr 1 10:59:25 2013
@@ -23,7 +23,7 @@ void foo(EVT e);
EVT bar();
void get(int *i, unsigned dl, VAL v, VAL *p, unsigned n, EVT missing_arg) {
-//CHECK: .asciz "missing_arg"
+//CHECK: .{{asciz|string}} "missing_arg"
EVT e = bar();
if (dl == n)
foo(missing_arg);
More information about the cfe-commits
mailing list