diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-08-19 16:58:54 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-08-19 16:58:54 +0000 |
commit | 11c07d7eec2889be194e1662277542af2c9359df (patch) | |
tree | cf10f6375d086cd35dc910d75cba0497bb53ce8a /llvm/tools/llvm-as/llvm-as.cpp | |
parent | 38f556d96d564fbd0fa9f76b5bd049338698b053 (diff) | |
download | bcm5719-llvm-11c07d7eec2889be194e1662277542af2c9359df.tar.gz bcm5719-llvm-11c07d7eec2889be194e1662277542af2c9359df.zip |
Modernize the .ll parsing interface.
* Use StringRef instead of std::string&
* Return a std::unique_ptr<Module> instead of taking an optional module to write
to (was not really used).
* Use current comment style.
* Use current naming convention.
llvm-svn: 215989
Diffstat (limited to 'llvm/tools/llvm-as/llvm-as.cpp')
-rw-r--r-- | llvm/tools/llvm-as/llvm-as.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-as/llvm-as.cpp b/llvm/tools/llvm-as/llvm-as.cpp index 007241c5068..ef4f7ba272a 100644 --- a/llvm/tools/llvm-as/llvm-as.cpp +++ b/llvm/tools/llvm-as/llvm-as.cpp @@ -94,7 +94,7 @@ int main(int argc, char **argv) { // Parse the file now... SMDiagnostic Err; - std::unique_ptr<Module> M(ParseAssemblyFile(InputFilename, Err, Context)); + std::unique_ptr<Module> M = parseAssemblyFile(InputFilename, Err, Context); if (!M.get()) { Err.print(argv[0], errs()); return 1; |