projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7228aa7
)
Fix a typeo, no wonder all tokenfactor edges were the same!
author
Chris Lattner
<sabre@nondot.org>
Fri, 19 Aug 2005 21:33:02 +0000
(21:33 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Fri, 19 Aug 2005 21:33:02 +0000
(21:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22935
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/PowerPC/PPCISelDAGToDAG.cpp
patch
|
blob
|
history
diff --git
a/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
b/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
index 4e94717762dcecd4aeedffa37cf29901adc954b2..7f2642c8a5db4a82ecdfdb812c58c24dd2a2f0ae 100644
(file)
--- a/
lib/Target/PowerPC/PPCISelDAGToDAG.cpp
+++ b/
lib/Target/PowerPC/PPCISelDAGToDAG.cpp
@@
-347,7
+347,7
@@
SDOperand PPC32DAGToDAGISel::Select(SDOperand Op) {
} else {
std::vector<SDOperand> Ops;
for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
- Ops.push_back(Select(N->getOperand(
0
)));
+ Ops.push_back(Select(N->getOperand(
i
)));
New = CurDAG->getNode(ISD::TokenFactor, MVT::Other, Ops);
}