yet more aliases.
authorChris Lattner <sabre@nondot.org>
Mon, 27 Sep 2010 07:24:57 +0000 (07:24 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 27 Sep 2010 07:24:57 +0000 (07:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114822 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/AsmParser/X86AsmParser.cpp
test/MC/AsmParser/X86/x86_instructions.s

index da376657c34d3d54dd0cfd493881c98c88a6dff3..bedababdb2658a19fb698f23c83b2eacd9035601 100644 (file)
@@ -634,6 +634,9 @@ ParseInstruction(StringRef Name, SMLoc NameLoc,
     .Case("repnz", "repne")
     .Case("iret", "iretl")
     .Case("sysret", "sysretl")
+    .Case("cbw",  "cbtw")
+    .Case("cwd",  "cwtd")
+    .Case("cdq", "cltd")
     .Case("cwde", "cwtl")
     .Case("cdqe", "cltq")
     .Case("smovb", "movsb")
index cb6811a51aaad9bba0795f053fa749902604568a..65c27a3532470672b84a3ff768abc4170a8f8c0b 100644 (file)
@@ -403,3 +403,7 @@ cdqe  // CHECK: cltq
 cwde  // CHECK: cwtl
 cwtl  // CHECK: cwtl
 
+// rdar://8416805
+cbw   // CHECK: cbtw
+cwd   // CHECK: cwtd
+cdq   // CHECK: cltd