summaryrefslogtreecommitdiffstats
path: root/clang/lib/Basic/SourceManager.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2012-10-12 22:56:33 +0000
committerTed Kremenek <kremenek@apple.com>2012-10-12 22:56:33 +0000
commitbd1d7fa46088b3b339ad613831a443fc5b65526b (patch)
treeb22dee9a640167fadecb2a26958e967d2868f1e6 /clang/lib/Basic/SourceManager.cpp
parentb9f7aa46dd198947118685276c9dd865f677dcb5 (diff)
downloadbcm5719-llvm-bd1d7fa46088b3b339ad613831a443fc5b65526b.tar.gz
bcm5719-llvm-bd1d7fa46088b3b339ad613831a443fc5b65526b.zip
Silence dead store warning. It is conceptually possible we will
add more code that references SourceFile, so removing the dead store doesn't seem appropriate for the long term. llvm-svn: 165837
Diffstat (limited to 'clang/lib/Basic/SourceManager.cpp')
-rw-r--r--clang/lib/Basic/SourceManager.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/Basic/SourceManager.cpp b/clang/lib/Basic/SourceManager.cpp
index 65bd601eeaf..eefaacc7c3d 100644
--- a/clang/lib/Basic/SourceManager.cpp
+++ b/clang/lib/Basic/SourceManager.cpp
@@ -1577,6 +1577,7 @@ FileID SourceManager::translateFile(const FileEntry *SourceFile) const {
}
}
+ (void) SourceFile;
return FirstFID;
}
OpenPOWER on IntegriCloud