14 lines · plain
1// RUN: llvm-mc -triple aarch64-windows-gnu -filetype obj -o %t.obj %s2// RUN: llvm-objdump --no-print-imm-hex -d %t.obj | FileCheck %s3// RUN: llvm-mc -triple aarch64-windows-msvc -filetype obj -o %t.obj %s4// RUN: llvm-objdump --no-print-imm-hex -d %t.obj | FileCheck %s5 6func:7// Check that the nop instruction after the semicolon also is handled8nop; nop9add x0, x0, #4210 11// CHECK: 0: d503201f nop12// CHECK: 4: d503201f nop13// CHECK: 8: 9100a800 add x0, x0, #4214