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 | 186ec9c2e6db6fd5827f2078d2a6b82085be54d3 (patch) | |
tree | fd193091c13a09b1e7a9b3de87e082662c177b91 /lib/Basic | |
parent | 507d106c758e745d3f71f44639092eb97d356525 (diff) |
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.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@165837 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic')
-rw-r--r-- | lib/Basic/SourceManager.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Basic/SourceManager.cpp b/lib/Basic/SourceManager.cpp index 65bd601eea..eefaacc7c3 100644 --- a/lib/Basic/SourceManager.cpp +++ b/lib/Basic/SourceManager.cpp @@ -1577,6 +1577,7 @@ FileID SourceManager::translateFile(const FileEntry *SourceFile) const { } } + (void) SourceFile; return FirstFID; } |