diff options
author | Eric Christopher <echristo@gmail.com> | 2015-08-29 02:59:37 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2015-08-29 02:59:37 +0000 |
commit | a15a35e55274ec76b7fb606aea08788e3f21dcbc (patch) | |
tree | 1fad9a11f11de958d49f6200b8ac948a99fa5fee | |
parent | eea72ccbf2d8379a04b7783bc6a72a69ad5dface (diff) | |
download | bcm5719-llvm-a15a35e55274ec76b7fb606aea08788e3f21dcbc.tar.gz bcm5719-llvm-a15a35e55274ec76b7fb606aea08788e3f21dcbc.zip |
Add a check for a function we're not testing.
llvm-svn: 246355
-rw-r--r-- | clang/test/CodeGen/attr-target-x86.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/test/CodeGen/attr-target-x86.c b/clang/test/CodeGen/attr-target-x86.c index 6f9a75e2d68..7b1b89655d2 100644 --- a/clang/test/CodeGen/attr-target-x86.c +++ b/clang/test/CodeGen/attr-target-x86.c @@ -24,6 +24,7 @@ int __attribute__((target("no-aes, arch=ivybridge"))) qax(int a) { return 4; } // We're currently ignoring the fpmath attribute so koala should be identical to baz and bar. // CHECK: koala{{.*}} #0 // CHECK: echidna{{.*}} #2 +// CHECK: panda{{.*}} #3 // CHECK: bar{{.*}} #0 // CHECK: qux{{.*}} #1 // CHECK: qax{{.*}} #4 |