diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-10-23 15:20:05 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-10-23 15:20:05 +0000 |
commit | 1b47a28ff95455d2e753c1886b46ae4f201b9a28 (patch) | |
tree | d39b66e7a3222805c9dbfd317c63511e822f547d /llvm/lib/Bitcode/Reader/BitcodeReader.cpp | |
parent | a492fe972d0bf4515666d127f3e6adc944165400 (diff) | |
download | llvm-1b47a28ff95455d2e753c1886b46ae4f201b9a28.zip llvm-1b47a28ff95455d2e753c1886b46ae4f201b9a28.tar.gz llvm-1b47a28ff95455d2e753c1886b46ae4f201b9a28.tar.bz2 |
clang-format two code snippets to make the next patch easy to read.
llvm-svn: 220484
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp')
-rw-r--r-- | llvm/lib/Bitcode/Reader/BitcodeReader.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp index f113c2c..ca6d73c 100644 --- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp @@ -2071,7 +2071,8 @@ std::error_code BitcodeReader::ParseModule(bool Resume) { // creating now, so that we can match up the body with them later. if (!isProto) { FunctionsWithBodies.push_back(Func); - if (LazyStreamer) DeferredFunctionInfo[Func] = 0; + if (LazyStreamer) + DeferredFunctionInfo[Func] = 0; } break; } |