diff options
author | Nico Rieck <nico.rieck@gmail.com> | 2014-05-23 19:07:25 +0000 |
---|---|---|
committer | Nico Rieck <nico.rieck@gmail.com> | 2014-05-23 19:07:25 +0000 |
commit | 4da7debf7d0f638fa4df6e81db33976dc3d442dc (patch) | |
tree | 19b37346df172b43202588217b49a9d545582584 /clang/test/CodeGen/attr-optnone.c | |
parent | f84814f9b47f1c465e401a3f6a4295c185f1fca1 (diff) | |
download | bcm5719-llvm-4da7debf7d0f638fa4df6e81db33976dc3d442dc.tar.gz bcm5719-llvm-4da7debf7d0f638fa4df6e81db33976dc3d442dc.zip |
Fix broken FileCheck prefix
llvm-svn: 209541
Diffstat (limited to 'clang/test/CodeGen/attr-optnone.c')
-rw-r--r-- | clang/test/CodeGen/attr-optnone.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/attr-optnone.c b/clang/test/CodeGen/attr-optnone.c index 7c4873f8c5f..e7069b10f21 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{{.*}} } |