[llvm-branch-commits] [cfe-branch] r119651 - /cfe/branches/Apple/whitney/tools/libclang/CIndex.cpp
Daniel Dunbar
daniel at zuster.org
Wed Nov 17 18:37:34 PST 2010
Author: ddunbar
Date: Wed Nov 17 20:37:34 2010
New Revision: 119651
URL: http://llvm.org/viewvc/llvm-project?rev=119651&view=rev
Log:
Merge r119349:
--
Author: Benjamin Kramer <benny.kra at googlemail.com>
Date: Tue Nov 16 15:45:46 2010 +0000
MSVC doesn't like the noinline attribute at the end of a declaration. Try the other side.
Modified:
cfe/branches/Apple/whitney/tools/libclang/CIndex.cpp
Modified: cfe/branches/Apple/whitney/tools/libclang/CIndex.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/branches/Apple/whitney/tools/libclang/CIndex.cpp?rev=119651&r1=119650&r2=119651&view=diff
==============================================================================
--- cfe/branches/Apple/whitney/tools/libclang/CIndex.cpp (original)
+++ cfe/branches/Apple/whitney/tools/libclang/CIndex.cpp Wed Nov 17 20:37:34 2010
@@ -355,7 +355,7 @@
bool IsInRegionOfInterest(CXCursor C);
bool RunVisitorWorkList(VisitorWorkList &WL);
void EnqueueWorkList(VisitorWorkList &WL, Stmt *S);
- bool VisitDataRecursive(Stmt *S) LLVM_ATTRIBUTE_NOINLINE;
+ LLVM_ATTRIBUTE_NOINLINE bool VisitDataRecursive(Stmt *S);
};
} // end anonymous namespace
More information about the llvm-branch-commits
mailing list