diff options
| author | Owen Anderson <resistor@mac.com> | 2009-08-11 20:47:22 +0000 |
|---|---|---|
| committer | Owen Anderson <resistor@mac.com> | 2009-08-11 20:47:22 +0000 |
| commit | 9f94459d24d82504f0962dfe366a5b39576c4809 (patch) | |
| tree | 30fe4c6ae2098fabf6467a05035d39feec7d6b59 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp | |
| parent | a1e04d43c4986c24723e8840d9f7a00ed068c2df (diff) | |
| download | bcm5719-llvm-9f94459d24d82504f0962dfe366a5b39576c4809.tar.gz bcm5719-llvm-9f94459d24d82504f0962dfe366a5b39576c4809.zip | |
Split EVT into MVT and EVT, the former representing _just_ a primitive type, while
the latter is capable of representing either a primitive or an extended type.
llvm-svn: 78713
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp index ef451103617..3b1100bb419 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp @@ -85,9 +85,9 @@ namespace llvm { static std::string getEdgeAttributes(const void *Node, EdgeIter EI) { SDValue Op = EI.getNode()->getOperand(EI.getOperand()); EVT VT = Op.getValueType(); - if (VT == EVT::Flag) + if (VT == MVT::Flag) return "color=red,style=bold"; - else if (VT == EVT::Other) + else if (VT == MVT::Other) return "color=blue,style=dashed"; return ""; } |

