YouCompleteMe/cpp/llvm/test/MC/X86/address-size.s
2012-07-05 17:51:06 -07:00

14 lines
334 B
ArmAsm

// RUN: llvm-mc -triple x86_64-unknown-unknown --show-encoding %s | FileCheck %s
.code64
movb $0x0, (%esi)
// CHECK: encoding: [0x67,0xc6,0x06,0x00]
movb $0x0, (%rsi)
// CHECK: encoding: [0xc6,0x06,0x00]
.code32
movb $0x0, (%si)
// CHECK: encoding: [0x67,0xc6,0x06,0x00]
movb $0x0, (%esi)
// CHECK: encoding: [0xc6,0x06,0x00]