summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2011-11-16 01:02:57 +0000
committerOwen Anderson <resistor@mac.com>2011-11-16 01:02:57 +0000
commitca2f78a95be675a98107292bee4a7578ab90f2a4 (patch)
treef9c6ecf015ed0f3bbb0d703af8325511dcdc68e3 /llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
parent90c7a108ca6872cf025d4b6485c788d78c2a8504 (diff)
downloadbcm5719-llvm-ca2f78a95be675a98107292bee4a7578ab90f2a4.tar.gz
bcm5719-llvm-ca2f78a95be675a98107292bee4a7578ab90f2a4.zip
Rename MVT::untyped to MVT::Untyped to match similar nomenclature.
llvm-svn: 144747
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
index 5adbc0d6aa7..cd0da37f67f 100644
--- a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
@@ -267,7 +267,7 @@ private:
/// GetCostForDef - Looks up the register class and cost for a given definition.
/// Typically this just means looking up the representative register class,
-/// but for untyped values (MVT::untyped) it means inspecting the node's
+/// but for untyped values (MVT::Untyped) it means inspecting the node's
/// opcode to determine what register class is being generated.
static void GetCostForDef(const ScheduleDAGSDNodes::RegDefIter &RegDefPos,
const TargetLowering *TLI,
@@ -278,7 +278,7 @@ static void GetCostForDef(const ScheduleDAGSDNodes::RegDefIter &RegDefPos,
// Special handling for untyped values. These values can only come from
// the expansion of custom DAG-to-DAG patterns.
- if (VT == MVT::untyped) {
+ if (VT == MVT::Untyped) {
const SDNode *Node = RegDefPos.GetNode();
unsigned Opcode = Node->getMachineOpcode();
OpenPOWER on IntegriCloud