diff options
Diffstat (limited to 'llvm/lib/Target/X86/X86ISelLowering.h')
-rw-r--r-- | llvm/lib/Target/X86/X86ISelLowering.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.h b/llvm/lib/Target/X86/X86ISelLowering.h index 5d3f287a381..6666b451e24 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.h +++ b/llvm/lib/Target/X86/X86ISelLowering.h @@ -661,12 +661,13 @@ namespace llvm { unsigned cmovOpc) const; /// Emit nodes that will be selected as "test Op0,Op0", or something - /// equivalent. - SDValue EmitTest(SDValue Op0, SelectionDAG &DAG); + /// equivalent, for use with the given x86 condition code. + SDValue EmitTest(SDValue Op0, unsigned X86CC, SelectionDAG &DAG); /// Emit nodes that will be selected as "cmp Op0,Op1", or something - /// equivalent. - SDValue EmitCmp(SDValue Op0, SDValue Op1, SelectionDAG &DAG); + /// equivalent, for use with the given x86 condition code. + SDValue EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC, + SelectionDAG &DAG); }; namespace X86 { |