From a529061434e3121b15f859b996cdb999d4eec125 Mon Sep 17 00:00:00 2001 From: Nico Rieck Date: Fri, 23 May 2014 19:07:25 +0000 Subject: [PATCH] Fix broken FileCheck prefix git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@209541 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/attr-optnone.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CodeGen/attr-optnone.c b/test/CodeGen/attr-optnone.c index 7c4873f8c5..e7069b10f2 100644 --- a/test/CodeGen/attr-optnone.c +++ b/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{{.*}} } -- 2.40.0