diff options
author | Chris Lattner <sabre@nondot.org> | 2010-08-19 01:00:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-08-19 01:00:34 +0000 |
commit | beb506eeedc5fa8d59b736f987895da464cae1af (patch) | |
tree | 0baaf085320796ffa840c65644d9cbe09b942a1c | |
parent | c2c576a9e75347673a3a1d94a14576649e24e3c8 (diff) | |
download | bcm5719-llvm-beb506eeedc5fa8d59b736f987895da464cae1af.tar.gz bcm5719-llvm-beb506eeedc5fa8d59b736f987895da464cae1af.zip |
minor progress towards fixing PR7465
llvm-svn: 111494
-rw-r--r-- | llvm/lib/Target/X86/X86InstrFormats.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/X86/X86InstrFormats.td b/llvm/lib/Target/X86/X86InstrFormats.td index cc4dd5bcb6b..f5da48230af 100644 --- a/llvm/lib/Target/X86/X86InstrFormats.td +++ b/llvm/lib/Target/X86/X86InstrFormats.td @@ -224,13 +224,13 @@ class FpI_<dag outs, dag ins, FPFormat fp, list<dag> pattern> // Iseg32 - 16-bit segment selector, 32-bit offset class Iseg16 <bits<8> o, Format f, dag outs, dag ins, string asm, - list<dag> pattern> : X86Inst<o, f, NoImm, outs, ins, asm> { + list<dag> pattern> : X86Inst<o, f, Imm16, outs, ins, asm> { let Pattern = pattern; let CodeSize = 3; } class Iseg32 <bits<8> o, Format f, dag outs, dag ins, string asm, - list<dag> pattern> : X86Inst<o, f, NoImm, outs, ins, asm> { + list<dag> pattern> : X86Inst<o, f, Imm32, outs, ins, asm> { let Pattern = pattern; let CodeSize = 3; } |