summaryrefslogtreecommitdiffstats
path: root/llvm/utils
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2009-09-11 09:01:57 +0000
committerOwen Anderson <resistor@mac.com>2009-09-11 09:01:57 +0000
commit598467916d2b5384f711323ba49bf6ed7f69b604 (patch)
tree6b17473798e8df09abfc35ffdaa3ceb46f95e2fb /llvm/utils
parentbcdb0423c530254d9f65a3f14a4676725b20e24f (diff)
downloadbcm5719-llvm-598467916d2b5384f711323ba49bf6ed7f69b604.tar.gz
bcm5719-llvm-598467916d2b5384f711323ba49bf6ed7f69b604.zip
Eliminate some unnecessary implicit constructors in generated DAG ISel code.
Partial fix for PR4946. llvm-svn: 81518
Diffstat (limited to 'llvm/utils')
-rw-r--r--llvm/utils/TableGen/DAGISelEmitter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/DAGISelEmitter.cpp b/llvm/utils/TableGen/DAGISelEmitter.cpp
index 95df746aecd..d4cd1661d7f 100644
--- a/llvm/utils/TableGen/DAGISelEmitter.cpp
+++ b/llvm/utils/TableGen/DAGISelEmitter.cpp
@@ -1776,7 +1776,7 @@ void DAGISelEmitter::EmitInstructionSelector(raw_ostream &OS) {
CallerCode += ", " + TargetOpcodes[j];
}
for (unsigned j = 0, e = TargetVTs.size(); j != e; ++j) {
- CalleeCode += ", EVT VT" + utostr(j);
+ CalleeCode += ", MVT::SimpleValueType VT" + utostr(j);
CallerCode += ", " + TargetVTs[j];
}
for (std::set<std::string>::iterator
OpenPOWER on IntegriCloud