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:
481c8e0
)
Bug fix: CodeGenMap[N] = ... -> CodeGenMap[N.getValue(0)] = ...
author
Evan Cheng
<evan.cheng@apple.com>
Mon, 12 Dec 2005 23:45:21 +0000
(23:45 +0000)
committer
Evan Cheng
<evan.cheng@apple.com>
Mon, 12 Dec 2005 23:45:21 +0000
(23:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24680
91177308
-0d34-0410-b5e6-
96231b3b80d8
utils/TableGen/DAGISelEmitter.cpp
patch
|
blob
|
history
diff --git
a/utils/TableGen/DAGISelEmitter.cpp
b/utils/TableGen/DAGISelEmitter.cpp
index 0a8b989b37cd93533a336f3e76ad8f05cf0a828d..de74ac13a4108296210497b840969edbbb6ad77c 100644
(file)
--- a/
utils/TableGen/DAGISelEmitter.cpp
+++ b/
utils/TableGen/DAGISelEmitter.cpp
@@
-2026,7
+2026,7
@@
public:
OS << ", InFlag";
OS << ");\n";
if (NumResults != 0) {
- OS << " CodeGenMap[N] = Result;\n";
+ OS << " CodeGenMap[N
.getValue(0)
] = Result;\n";
}
OS << " Chain ";
if (NodeHasChain(LHS, ISE))