aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-02-14 04:47:23 +0000
committerChris Lattner <sabre@nondot.org>2004-02-14 04:47:23 +0000
commit9f87a6ce6fabac312162752805d07aed3a04d48b (patch)
tree091e1099333053689ed9637cd00b9f058baee658
parent2a0f224ce9cac7baf3bced94ce304277c5ec74da (diff)
Urg, right. These need an input value...
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11443 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/X86/X86InstrInfo.td6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/X86/X86InstrInfo.td b/lib/Target/X86/X86InstrInfo.td
index 657cec5149..07cf94173a 100644
--- a/lib/Target/X86/X86InstrInfo.td
+++ b/lib/Target/X86/X86InstrInfo.td
@@ -182,11 +182,11 @@ def REP_MOVSD : X86Inst<"rep movsd", 0xA5, RawFrm, NoArg>, REP,
Imp<[ECX,EDI,ESI], [ECX,EDI,ESI]>;
def REP_STOSB : X86Inst<"rep stosb", 0xAA, RawFrm, NoArg>, REP,
- Imp<[ECX,EDI], [ECX,EDI]>;
+ Imp<[AL,ECX,EDI], [ECX,EDI]>;
def REP_STOSW : X86Inst<"rep stosw", 0xAB, RawFrm, NoArg>, REP, OpSize,
- Imp<[ECX,EDI], [ECX,EDI]>;
+ Imp<[AX,ECX,EDI], [ECX,EDI]>;
def REP_STOSD : X86Inst<"rep stosd", 0xAB, RawFrm, NoArg>, REP,
- Imp<[ECX,EDI], [ECX,EDI]>;
+ Imp<[EAX,ECX,EDI], [ECX,EDI]>;
//===----------------------------------------------------------------------===//
// Move Instructions...