summaryrefslogtreecommitdiffstats
path: root/clang/lib/Parse/ParseDecl.cpp
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2019-08-23 19:59:23 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2019-08-23 19:59:23 +0000
commitdc5f805d31f62e094bd3eb105b47620633f65e5b (patch)
tree90c02e8b643b8f5dbf98ac823afb2bfd07bdabca /clang/lib/Parse/ParseDecl.cpp
parentbc173d4c515a461d2177121da8ef7657b6c5b8a7 (diff)
downloadbcm5719-llvm-dc5f805d31f62e094bd3eb105b47620633f65e5b.tar.gz
bcm5719-llvm-dc5f805d31f62e094bd3eb105b47620633f65e5b.zip
Do a sweep of symbol internalization. NFC.
llvm-svn: 369803
Diffstat (limited to 'clang/lib/Parse/ParseDecl.cpp')
-rw-r--r--clang/lib/Parse/ParseDecl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Parse/ParseDecl.cpp b/clang/lib/Parse/ParseDecl.cpp
index 71d1c3b8f4a..3de52ce8754 100644
--- a/clang/lib/Parse/ParseDecl.cpp
+++ b/clang/lib/Parse/ParseDecl.cpp
@@ -86,8 +86,8 @@ static bool isAttributeLateParsed(const IdentifierInfo &II) {
}
/// Check if the a start and end source location expand to the same macro.
-bool FindLocsWithCommonFileID(Preprocessor &PP, SourceLocation StartLoc,
- SourceLocation EndLoc) {
+static bool FindLocsWithCommonFileID(Preprocessor &PP, SourceLocation StartLoc,
+ SourceLocation EndLoc) {
if (!StartLoc.isMacroID() || !EndLoc.isMacroID())
return false;
OpenPOWER on IntegriCloud