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/unittests/CodeGen/MachineOperandTest.cpp | |
parent | 378b5f3de600ef68d856003454d0e9f3a818762f (diff) | |
download | bcm5719-llvm-eb3f76fc83146f85b424a8f923f65263069876dd.tar.gz bcm5719-llvm-eb3f76fc83146f85b424a8f923f65263069876dd.zip |
[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/unittests/CodeGen/MachineOperandTest.cpp')
-rw-r--r-- | llvm/unittests/CodeGen/MachineOperandTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/CodeGen/MachineOperandTest.cpp b/llvm/unittests/CodeGen/MachineOperandTest.cpp index 8f35406f160..cedea8c2783 100644 --- a/llvm/unittests/CodeGen/MachineOperandTest.cpp +++ b/llvm/unittests/CodeGen/MachineOperandTest.cpp @@ -311,7 +311,7 @@ TEST(MachineOperandTest, PrintMetadata) { std::string str; // Print a MachineOperand containing a metadata node. raw_string_ostream OS(str); - MO.print(OS, MST, LLT{}, /*PrintDef=*/false, /*IsVerbose=*/false, + MO.print(OS, MST, LLT{}, /*PrintDef=*/false, /*IsStandalone=*/false, /*ShouldPrintRegisterTies=*/false, 0, /*TRI=*/nullptr, /*IntrinsicInfo=*/nullptr); ASSERT_TRUE(OS.str() == "!0"); |