diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-12-18 20:13:39 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-12-18 20:13:39 +0000 |
| commit | c4a03483f4c53c71fb6763f7abb3204ee3053b69 (patch) | |
| tree | ea6d8350c4f9c2a25e6180ee9aa8387b643d9510 /llvm/tools/lli | |
| parent | e5dafd176555e9ea564889247737fec4d622fb9e (diff) | |
| download | bcm5719-llvm-c4a03483f4c53c71fb6763f7abb3204ee3053b69.tar.gz bcm5719-llvm-c4a03483f4c53c71fb6763f7abb3204ee3053b69.zip | |
Drop materializeAllPermanently.
This inlines materializeAll into the only caller
(materializeAllPermanently) and renames materializeAllPermanently to
just materializeAll.
llvm-svn: 256024
Diffstat (limited to 'llvm/tools/lli')
| -rw-r--r-- | llvm/tools/lli/lli.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/lli/lli.cpp b/llvm/tools/lli/lli.cpp index 949b444cc28..9f714060c17 100644 --- a/llvm/tools/lli/lli.cpp +++ b/llvm/tools/lli/lli.cpp @@ -421,7 +421,7 @@ int main(int argc, char **argv, char * const *envp) { // If not jitting lazily, load the whole bitcode file eagerly too. if (NoLazyCompilation) { - if (std::error_code EC = Mod->materializeAllPermanently()) { + if (std::error_code EC = Mod->materializeAll()) { errs() << argv[0] << ": bitcode didn't read correctly.\n"; errs() << "Reason: " << EC.message() << "\n"; exit(1); |

