[llvm-commits] [llvm] r67333 - /llvm/branches/Apple/Dib/include/llvm/CodeGen/SelectionDAG.h

Bill Wendling isanbard at gmail.com
Thu Mar 19 13:07:26 PDT 2009


Author: void
Date: Thu Mar 19 15:07:26 2009
New Revision: 67333

URL: http://llvm.org/viewvc/llvm-project?rev=67333&view=rev
Log:
--- Merging (from foreign repository) r67319 into '.':
U    include/llvm/CodeGen/SelectionDAG.h

SADDO and UADDO are commutative.

Modified:
    llvm/branches/Apple/Dib/include/llvm/CodeGen/SelectionDAG.h

Modified: llvm/branches/Apple/Dib/include/llvm/CodeGen/SelectionDAG.h
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/Apple/Dib/include/llvm/CodeGen/SelectionDAG.h?rev=67333&r1=67332&r2=67333&view=diff

==============================================================================
--- llvm/branches/Apple/Dib/include/llvm/CodeGen/SelectionDAG.h (original)
+++ llvm/branches/Apple/Dib/include/llvm/CodeGen/SelectionDAG.h Thu Mar 19 15:07:26 2009
@@ -770,6 +770,8 @@
     case ISD::AND:
     case ISD::OR:
     case ISD::XOR:
+    case ISD::SADDO:
+    case ISD::UADDO:
     case ISD::ADDC:
     case ISD::ADDE: return true;
     default: return false;





More information about the llvm-commits mailing list