Skip to content
  • Ahmed Bougacha's avatar
    X86: Fix Defs/Uses for insts that imp-def/imp-use both an A-register and EFLAGS. · 00e08db3
    Ahmed Bougacha authored
    This corrects a problem where x86 instructions that implicitly define/use both
    an A-register (RAX, EAX, ..) and EFLAGS were declared as only defining/using
    EFLAGS, because the outer "let Defs/Uses = [EFLAGS]" in the various multiclasses
    overrides the "let Defs/Uses = [areg]" in BinOpAI.
    
    The instructions deriving from BinOpAI were moved out of the "let Defs", and a
    BinOpAI_FF class was created, for instructions that implicitly define and use
    EFLAGS and the A-register (SBC, ADC).
    
    llvm-svn: 182883
    00e08db3
Loading