summaryrefslogtreecommitdiff
path: root/compiler/utils/assembler_thumb_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/utils/assembler_thumb_test.cc')
-rw-r--r--compiler/utils/assembler_thumb_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/utils/assembler_thumb_test.cc b/compiler/utils/assembler_thumb_test.cc
index 1d9f013f48..9231f9ccc9 100644
--- a/compiler/utils/assembler_thumb_test.cc
+++ b/compiler/utils/assembler_thumb_test.cc
@@ -59,9 +59,9 @@ class ArmVIXLAssemblerTest : public AssemblerTestBase {
disassembly = std::regex_replace(disassembly, annotation_re, "");
std::string expected2 = "\n" +
- obj_file + ": file format ELF32-arm-little\n\n\n"
+ obj_file + ": file format elf32-littlearm\n\n\n"
"Disassembly of section .text:\n\n"
- "00000000 .text:\n" +
+ "00000000 <.text>:\n" +
expected;
EXPECT_EQ(expected2, disassembly);
if (expected2 != disassembly) {