From: Nico Rieck Date: Fri, 23 May 2014 19:07:25 +0000 (+0000) Subject: Fix broken FileCheck prefix X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4da7debf7d0f638fa4df6e81db33976dc3d442dc;p=platform%2Fupstream%2Fllvm.git Fix broken FileCheck prefix llvm-svn: 209541 --- diff --git a/clang/test/CodeGen/attr-optnone.c b/clang/test/CodeGen/attr-optnone.c index 7c4873f..e7069b1 100644 --- a/clang/test/CodeGen/attr-optnone.c +++ b/clang/test/CodeGen/attr-optnone.c @@ -14,7 +14,7 @@ __attribute__((optnone)) __attribute__((cold)) 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{{.*}} }