diff options
author | Craig Topper <craig.topper@gmail.com> | 2013-08-15 02:44:19 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2013-08-15 02:44:19 +0000 |
commit | d9c2783d8f7b7a27514d2d31083420422361df5b (patch) | |
tree | 69019fd0fe2e4fd919f793df8b9d1a812cadf396 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | |
parent | 5671010cbb72ebd5127150e77d5a7fc78f1293cc (diff) | |
download | bcm5719-llvm-d9c2783d8f7b7a27514d2d31083420422361df5b.tar.gz bcm5719-llvm-d9c2783d8f7b7a27514d2d31083420422361df5b.zip |
Replace getValueType().getSimpleVT() with getSimpleValueType().
llvm-svn: 188442
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 01da51c5f28..e60adbf9e4e 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -2432,7 +2432,7 @@ SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable, } case OPC_SwitchType: { - MVT CurNodeVT = N.getValueType().getSimpleVT(); + MVT CurNodeVT = N.getSimpleValueType(); unsigned SwitchStart = MatcherIndex-1; (void)SwitchStart; unsigned CaseSize; while (1) { |