diff options
author | Chris Lattner <sabre@nondot.org> | 2007-05-04 03:50:29 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-05-04 03:50:29 +0000 |
commit | 35a0470e0229c9a15a4c0d3af8d6c6564d81bd7d (patch) | |
tree | 5c4db75752a7eac2fc9b2a0fa3bc2455c2817b35 /lib/Bitcode/Reader/BitcodeReader.cpp | |
parent | 9113e73ecf72b0a94715b3e204211e2c7f55dda7 (diff) |
fix a misplaced error
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36736 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bitcode/Reader/BitcodeReader.cpp')
-rw-r--r-- | lib/Bitcode/Reader/BitcodeReader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bitcode/Reader/BitcodeReader.cpp b/lib/Bitcode/Reader/BitcodeReader.cpp index c0487d5047..f546bb4891 100644 --- a/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/lib/Bitcode/Reader/BitcodeReader.cpp @@ -1508,8 +1508,8 @@ bool BitcodeReader::ParseFunctionBody(Function *F) { delete A; } } + return Error("Never resolved value found in function!"); } - return Error("Never resolved value found in function!"); } // Trim the value list down to the size it was before we parsed this function. |