You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
366 B
7 lines
366 B
// RUN: %clang_cc1 -triple=x86_64-unknown-linux -Wpragmas -verify %s
|
|
|
|
// Check that pragma redefine_extname applies to external declarations only.
|
|
#pragma redefine_extname foo_static bar_static
|
|
static int foo_static() { return 1; } // expected-warning {{#pragma redefine_extname is applicable to external C declarations only; not applied to function 'foo_static'}}
|
|
|