diff options
author | Francis Visoiu Mistrih <francisvm@yahoo.com> | 2018-01-18 18:05:15 +0000 |
---|---|---|
committer | Francis Visoiu Mistrih <francisvm@yahoo.com> | 2018-01-18 18:05:15 +0000 |
commit | eb3f76fc83146f85b424a8f923f65263069876dd (patch) | |
tree | 151b17a251cc8e20adf951186552f3c261e70662 /llvm/lib/CodeGen/MachineFunction.cpp | |
parent | 378b5f3de600ef68d856003454d0e9f3a818762f (diff) | |
download | llvm-eb3f76fc83146f85b424a8f923f65263069876dd.zip llvm-eb3f76fc83146f85b424a8f923f65263069876dd.tar.gz llvm-eb3f76fc83146f85b424a8f923f65263069876dd.tar.bz2 |
[CodeGen][NFC] Rename IsVerbose to IsStandalone in Machine*::print
Committed r322867 too soon.
Differential Revision: https://reviews.llvm.org/D42239
llvm-svn: 322868
Diffstat (limited to 'llvm/lib/CodeGen/MachineFunction.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineFunction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp index da286d7..58ad3c9 100644 --- a/llvm/lib/CodeGen/MachineFunction.cpp +++ b/llvm/lib/CodeGen/MachineFunction.cpp @@ -524,7 +524,7 @@ void MachineFunction::print(raw_ostream &OS, const SlotIndexes *Indexes) const { OS << '\n'; // If we print the whole function, don't print any verbose information, // since that information is already present. - BB.print(OS, MST, Indexes, /*IsVerbose=*/false); + BB.print(OS, MST, Indexes, /*IsStandalone=*/false); } OS << "\n# End machine code for function " << getName() << ".\n\n"; |