summaryrefslogtreecommitdiff
path: root/compiler/utils/assembler_test_base.h
diff options
context:
space:
mode:
author Stephen Hines <srhines@google.com> 2020-09-11 17:03:58 -0700
committer Stephen Hines <srhines@google.com> 2020-09-22 16:39:51 +0000
commit331c8e371f2a3324070a4da966af8bf296b58bbb (patch)
tree82ad282811d40e605bd7e0ad1c3be81ea3385e7f /compiler/utils/assembler_test_base.h
parent49cde240141d84bc0d79ed2225aff5b1a7f8a65e (diff)
Fix expected results for clang-r399163 update.
llvm-objdump changed the format it uses for displaying assembly, so we must also adapt all of the ART tests similarly, since they check for exact matching output. llvm-dwarfdump has similarly changed its outputs, so we adjust our expectations there too. Bug: http://b/155835175 Test: m test-art-host-gtest Change-Id: Iefdb7b98b5f87d9c7bbad1930a4393919d9b9b34
Diffstat (limited to 'compiler/utils/assembler_test_base.h')
-rw-r--r--compiler/utils/assembler_test_base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/assembler_test_base.h b/compiler/utils/assembler_test_base.h
index 736a292667..b4c0d0c447 100644
--- a/compiler/utils/assembler_test_base.h
+++ b/compiler/utils/assembler_test_base.h
@@ -150,7 +150,7 @@ class AssemblerTestBase : public testing::Test {
virtual std::vector<std::string> GetDisassemblerCommand() {
switch (GetIsa()) {
case InstructionSet::kThumb2:
- return {FindTool("llvm-objdump"), "--disassemble", "-triple", "thumbv7a-linux-gnueabi"};
+ return {FindTool("llvm-objdump"), "--disassemble", "--triple", "thumbv7a-linux-gnueabi"};
default:
return {FindTool("llvm-objdump"), "--disassemble", "--no-show-raw-insn"};
}