Skip to content
Snippets Groups Projects
Commit beb506ee authored by Chris Lattner's avatar Chris Lattner
Browse files

minor progress towards fixing PR7465

llvm-svn: 111494
parent c2c576a9
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment