From: Alexey Bataev Date: Fri, 17 Jul 2015 04:21:51 +0000 (+0000) Subject: Tests for "Disabling of "redefine_extname" pragma for C++ code" X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c0778667524384c5a756fb96572b64a58c545971;p=clang Tests for "Disabling of "redefine_extname" pragma for C++ code" In response to Richard Smith's comment (http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20150622/131782.html), this patch disables "redefine_extname" pragma for C++ code. Also, I added a test that this pragma doesn't apply to static declarations. Differential Revision: http://reviews.llvm.org/D10805 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@242507 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Sema/redefine_extname.c b/test/Sema/redefine_extname.c new file mode 100644 index 0000000000..8202176c9f --- /dev/null +++ b/test/Sema/redefine_extname.c @@ -0,0 +1,6 @@ +// 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'}} +