Changes in directory llvm/lib/CodeGen/SelectionDAG:
SelectionDAG.cpp updated: 1.308 -> 1.309 --- Log message: Fix CodeGen/Generic/2006-06-28-SimplifySetCCCrash.ll --- Diffs of the changes: (+4 -6) SelectionDAG.cpp | 10 ++++------ 1 files changed, 4 insertions(+), 6 deletions(-) Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.308 llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.309 --- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.308 Tue May 16 17:53:20 2006 +++ llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp Wed Jun 28 13:29:47 2006 @@ -243,12 +243,10 @@ if (isInteger) { switch (Result) { default: break; - case ISD::SETUO: // e.g. SETUGT & SETULT - Result = ISD::SETFALSE; - break; - case ISD::SETUEQ: // e.g. SETUGE & SETULE - Result = ISD::SETEQ; - break; + case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT + case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE + case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE + case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE } } _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits