r252376 - Use regex in test case.

Akira Hatanaka via cfe-commits cfe-commits at lists.llvm.org
Fri Nov 6 16:48:18 PST 2015


Author: ahatanak
Date: Fri Nov  6 18:48:18 2015
New Revision: 252376

URL: http://llvm.org/viewvc/llvm-project?rev=252376&view=rev
Log:
Use regex in test case.

This is a follow-up to r252369.

Modified:
    cfe/trunk/test/CodeGen/attr-no-tail.c

Modified: cfe/trunk/test/CodeGen/attr-no-tail.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/attr-no-tail.c?rev=252376&r1=252375&r2=252376&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/attr-no-tail.c (original)
+++ cfe/trunk/test/CodeGen/attr-no-tail.c Fri Nov  6 18:48:18 2015
@@ -6,7 +6,7 @@
 // Check that indirect calls do not have the notail marker.
 // CHECK: store i32 (i32)* @callee1, i32 (i32)** [[ALLOCA1:%[A-Za-z0-9]+]], align 8
 // CHECK: [[INDIRFUNC:%[0-9]+]] = load i32 (i32)*, i32 (i32)** [[ALLOCA1]], align 8
-// CHECK: %{{[a-z0-9]+}} = call i32 [[INDIRFUNC]](i32 %6)
+// CHECK: %{{[a-z0-9]+}} = call i32 [[INDIRFUNC]](i32 %{{[0-9]+}}
 
 // CHECK: %{{[a-z0-9]+}} = call i32 @callee2(i32 %
 




More information about the cfe-commits mailing list