Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr71652-2.c
blob6c8eaf18d6d81eb28e829ab9f40b8401e9d1fb5b
1 /* { dg-do compile } */
3 #pragma GCC push_options
4 #pragma GCC target ("arch=intel") /* { dg-error "'intel' CPU can be used only for 'target\\(\"tune=\"\\)' attribute" } */
6 __attribute__((constructor)) void foo()
8 asm ("");
11 #pragma GCC pop_options
13 int main() { return 0; }