Alexey Bataev | 64fc072 | 2015-07-17 04:21:51 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -triple=x86_64-unknown-linux -Wpragmas -verify %s |
2 | |||||
3 | // Check that pragma redefine_extname applies to external declarations only. | ||||
4 | #pragma redefine_extname foo_static bar_static | ||||
5 | static int foo_static() { return 1; } // expected-warning {{#pragma redefine_extname is applicable to external C declarations only; not applied to function 'foo_static'}} | ||||
6 |