diff options
Diffstat (limited to 'clang/test/CodeGen/target-features-error.c')
-rw-r--r-- | clang/test/CodeGen/target-features-error.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/clang/test/CodeGen/target-features-error.c b/clang/test/CodeGen/target-features-error.c new file mode 100644 index 00000000000..c7abbd00433 --- /dev/null +++ b/clang/test/CodeGen/target-features-error.c @@ -0,0 +1,8 @@ +// RUN: %clang_cc1 %s -triple=x86_64-linux-gnu -S -verify -o - +int __attribute__((target("avx"), always_inline)) foo(int a) { + return a + 4; +} +int bar() { + return foo(4); // expected-error {{function 'bar' and always_inline callee function 'foo' are required to have matching target features}} +} + |