diff options
| author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2014-07-25 15:00:02 +0000 | 
|---|---|---|
| committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2014-07-25 15:00:02 +0000 | 
| commit | f62acab1c0da7a8ef4779d9237c3d89fc2574d5b (patch) | |
| tree | 4a43489142399af2b1129f198e38790cc1d52af5 /llvm/lib | |
| parent | 6b6fdc992a826f66c1eb3b1e2a08220e29042891 (diff) | |
| download | bcm5719-llvm-f62acab1c0da7a8ef4779d9237c3d89fc2574d5b.tar.gz bcm5719-llvm-f62acab1c0da7a8ef4779d9237c3d89fc2574d5b.zip  | |
Fix -Werror build after r213945
llvm-svn: 213946
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/IR/UseListOrder.cpp | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/IR/UseListOrder.cpp b/llvm/lib/IR/UseListOrder.cpp index 42398baaa37..c1d3561a640 100644 --- a/llvm/lib/IR/UseListOrder.cpp +++ b/llvm/lib/IR/UseListOrder.cpp @@ -170,6 +170,7 @@ bool TempFile::init(const std::string &Ext) {    SmallVector<char, 64> Vector;    DEBUG(dbgs() << " - create-temp-file\n");    if (auto EC = sys::fs::createTemporaryFile("use-list-order", Ext, Vector)) { +    (void)EC;      DEBUG(dbgs() << "error: " << EC.message() << "\n");      return true;    }  | 

