summaryrefslogtreecommitdiffstats
path: root/test/PCH
diff options
context:
space:
mode:
authorDmitry Polukhin <dmitry.polukhin@gmail.com>2016-06-30 09:40:38 +0000
committerDmitry Polukhin <dmitry.polukhin@gmail.com>2016-06-30 09:40:38 +0000
commit1b7c219dcc9023d058de2a84b4b60b442bf6cbf5 (patch)
tree53ddf2a84992088c7fd316de8c983089032c8818 /test/PCH
parentb24786a7a08be8c857e0435f5ef303f73dfa3bb5 (diff)
[GCC] PR23529 Mangler part of attrbute abi_tag support
Original patch by Stefan Bühler http://reviews.llvm.org/D12834 Difference between original and this one: - fixed all failing tests - fixed mangling for global variable outside namespace - emit ABI tags for guards and local names - clang-format + other stylistic changes - significantly reworked patch according to Richard's suggestions Sema part, committed before http://reviews.llvm.org/D17567 Differential revision: http://reviews.llvm.org/D18035 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@274222 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/PCH')
-rw-r--r--test/PCH/attrs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/PCH/attrs.c b/test/PCH/attrs.c
index 5b70680460..3f34d4d009 100644
--- a/test/PCH/attrs.c
+++ b/test/PCH/attrs.c
@@ -9,7 +9,7 @@
#define HEADER
int f(int) __attribute__((visibility("default"), overloadable));
-int g(int) __attribute__((abi_tag("foo", "bar", "baz"), no_sanitize("address", "memory"))); // expected-warning {{ignored}}
+int g(int) __attribute__((abi_tag("foo", "bar", "baz"), no_sanitize("address", "memory")));
#else