[PATCH] Fix checked arithmetic for i8 on X86
Keno Fischer
kfischer at college.harvard.edu
Tue May 27 04:16:01 PDT 2014
This is http://llvm.org/bugs/show_bug.cgi?id=19858
http://reviews.llvm.org/D3920
Files:
lib/Target/X86/X86ISelLowering.cpp
Index: lib/Target/X86/X86ISelLowering.cpp
===================================================================
--- lib/Target/X86/X86ISelLowering.cpp
+++ lib/Target/X86/X86ISelLowering.cpp
@@ -11469,8 +11469,11 @@
}
if (addTest) {
- CC = DAG.getConstant(X86::COND_NE, MVT::i8);
- Cond = EmitTest(Cond, X86::COND_NE, dl, DAG);
+ X86::CondCode X86Cond = X86::COND_NE;
+ if (Inverted)
+ X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
+ CC = DAG.getConstant(X86Cond, MVT::i8);
+ Cond = EmitTest(Cond, X86Cond, dl, DAG);
}
Cond = ConvertCmpIfNecessary(Cond, DAG);
return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D3920.9829.patch
Type: text/x-patch
Size: 676 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20140527/5c00696f/attachment.bin>
More information about the llvm-commits
mailing list