Added retl for 32-bit x86 and added retq for 64-bit x86.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104394 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Kevin Enderby 2010-05-21 23:01:38 +00:00
parent 0df4a80e20
commit 9d31d79493
3 changed files with 12 additions and 0 deletions

View File

@ -584,6 +584,8 @@ ParseInstruction(const StringRef &Name, SMLoc NameLoc,
.Case("repnz", "repne")
.Case("pushf", Is64Bit ? "pushfq" : "pushfl")
.Case("popf", Is64Bit ? "popfq" : "popfl")
.Case("retl", Is64Bit ? "retl" : "ret")
.Case("retq", Is64Bit ? "ret" : "retq")
.Default(Name);
Operands.push_back(X86Operand::CreateToken(PatchedName, NameLoc));

View File

@ -84,3 +84,8 @@ int $255
popf
// CHECK: popfl # encoding: [0x9d]
popfl
// rdar://8014869
retl
// CHECK: ret
// CHECK: encoding: [0xc3]

View File

@ -104,3 +104,8 @@ movl 0, %eax // CHECK: movl 0, %eax # encoding: [0x8b,0x04,0x25,A,A,A,A]
// CHECK: movq $10, %rax
// CHECK: encoding: [0x48,0xc7,0xc0,0x0a,0x00,0x00,0x00]
movq $10, %rax
// rdar://8014869
retq
// CHECK: ret
// CHECK: encoding: [0xc3]