aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/attr-target-mv-bad-target.c
blob: 9cf3c5e10a6b27b821315c843009bef87e923d5e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// RUN: %clang_cc1 -triple x86_64-windows-pc  -fsyntax-only -verify %s
// RUN: %clang_cc1 -triple arm-none-eabi  -fsyntax-only -verify %s

int __attribute__((target("sse4.2"))) redecl1(void) { return 1; }
//expected-error@+2 {{function multiversioning is not supported on the current target}}
//expected-note@-2 {{previous declaration is here}}
int __attribute__((target("avx")))  redecl1(void) { return 2; }

//expected-error@+1 {{function multiversioning is not supported on the current target}}
int __attribute__((target("default"))) with_def(void) { return 1;}