diff options
author | Ted Kremenek <kremenek@apple.com> | 2012-10-12 22:56:33 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2012-10-12 22:56:33 +0000 |
commit | bd1d7fa46088b3b339ad613831a443fc5b65526b (patch) | |
tree | b22dee9a640167fadecb2a26958e967d2868f1e6 /clang/lib/Basic/SourceManager.cpp | |
parent | b9f7aa46dd198947118685276c9dd865f677dcb5 (diff) | |
download | bcm5719-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.cpp | 1 |
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; } |