1# Test that BOLT handles mapping syms that include ISA strings: $x<isa> 2 3RUN: yaml2obj -o %t %p/Inputs/mapping-syms-isa.yaml 4RUN: llvm-bolt --print-cfg --print-only=_start -o %t.bolt %t 2>&1 | FileCheck %s 5RUN: llvm-objdump -d %t.bolt | FileCheck --check-prefix=CHECK-OBJDUMP %s 6 7CHECK-NOT: BOLT-WARNING 8 9# Check that .word is not disassembled by BOLT 10CHECK: 00000000: nop 11CHECK: 00000002: ret 12 13# Check .word is still present in output 14CHECK-OBJDUMP: <_start>: 15CHECK-OBJDUMP-NEXT: nop 16CHECK-OBJDUMP-NEXT: unimp 17CHECK-OBJDUMP-NEXT: unimp 18CHECK-OBJDUMP-NEXT: ret 19