projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3e606ea
)
Fix use of an unitialized value in the LegalizeOps expansion for ISD::SUB. No in...
author
Owen Anderson
<resistor@mac.com>
Mon, 21 May 2012 22:39:20 +0000
(22:39 +0000)
committer
Owen Anderson
<resistor@mac.com>
Mon, 21 May 2012 22:39:20 +0000
(22:39 +0000)
Patch by Micah Villmow.
llvm-svn: 157215
llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
patch
|
blob
|
history
diff --git
a/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
b/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
index
b8cb897
..
f77c74b
100644
(file)
--- a/
llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
+++ b/
llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
@@
-3064,7
+3064,7
@@
void SelectionDAGLegalize::ExpandNode(SDNode *Node) {
"Don't know how to expand this subtraction!");
Tmp1 = DAG.getNode(ISD::XOR, dl, VT, Node->getOperand(1),
DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT));
- Tmp1 = DAG.getNode(ISD::ADD, dl, VT, Tmp
2
, DAG.getConstant(1, VT));
+ Tmp1 = DAG.getNode(ISD::ADD, dl, VT, Tmp
1
, DAG.getConstant(1, VT));
Results.push_back(DAG.getNode(ISD::ADD, dl, VT, Node->getOperand(0), Tmp1));
break;
}