r209541 - Fix broken FileCheck prefix
Nico Rieck
nico.rieck at gmail.com
Fri May 23 12:07:25 PDT 2014
Author: nrieck
Date: Fri May 23 14:07:25 2014
New Revision: 209541
URL: http://llvm.org/viewvc/llvm-project?rev=209541&view=rev
Log:
Fix broken FileCheck prefix
Modified:
cfe/trunk/test/CodeGen/attr-optnone.c
Modified: cfe/trunk/test/CodeGen/attr-optnone.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/attr-optnone.c?rev=209541&r1=209540&r2=209541&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/attr-optnone.c (original)
+++ cfe/trunk/test/CodeGen/attr-optnone.c Fri May 23 14:07:25 2014
@@ -14,7 +14,7 @@ __attribute__((optnone)) __attribute__((
int test4() { return test2(); }
// PRESENT-DAG: @test4{{.*}}[[ATTR4:#[0-9]+]]
// Also check that test2 is inlined into test4 (always_inline still works).
-// PRESENT-DAG-NOT: call i32 @test2
+// PRESENT-NOT: call i32 @test2
// Check for both noinline and optnone on each optnone function.
// PRESENT-DAG: attributes [[ATTR3]] = { {{.*}}noinline{{.*}}optnone{{.*}} }
More information about the cfe-commits
mailing list