[PATCH] D17567: [GCC] PR23529 Sema part of attrbute abi_tag support
Stephan Bergmann via cfe-commits
cfe-commits at lists.llvm.org
Wed Mar 2 06:46:22 PST 2016
sberg added a subscriber: sberg.
================
Comment at: lib/Sema/SemaDeclAttr.cpp:4497
@@ +4496,3 @@
+static void handleAbiTagAttr(Sema &S, Decl *D, const AttributeList &Attr) {
+ SmallVector<std::string, 4> Tags;
+ for (unsigned I = 0, E = Attr.getNumArgs(); I != E; ++I) {
----------------
needs to be SmallVector<StringRef, 4> with current trunk
http://reviews.llvm.org/D17567
More information about the cfe-commits
mailing list