diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-09-25 21:11:32 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-09-25 21:11:32 +0000 |
commit | 7aa0638aa9fcfa03e8ac86bd664f1b0437a8819c (patch) | |
tree | e3a4c3e8f349f8a147f813651cbd46d9f2cdde53 /llvm/lib | |
parent | b5534e5c28a4c7f1b21c69f32bb39883379ef6da (diff) | |
download | bcm5719-llvm-7aa0638aa9fcfa03e8ac86bd664f1b0437a8819c.tar.gz bcm5719-llvm-7aa0638aa9fcfa03e8ac86bd664f1b0437a8819c.zip |
Accidental enable of bad code
llvm-svn: 30601
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index e4fdedf6361..fbc4257263b 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -2706,7 +2706,7 @@ SDOperand DAGCombiner::visitSTORE(SDNode *N) { // If this is a store of a bit convert, store the input value. // FIXME: This needs to know that the resultant store does not need a // higher alignment than the original. - if (Value.getOpcode() == ISD::BIT_CONVERT) { + if (0 && Value.getOpcode() == ISD::BIT_CONVERT) { return DAG.getNode(ISD::STORE, MVT::Other, Chain, Value.getOperand(0), Ptr, SrcValue); } |