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/Target/X86/X86InstrInfo.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/Target/X86/X86InstrInfo.cpp')
| -rw-r--r-- | llvm/lib/Target/X86/X86InstrInfo.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/X86/X86InstrInfo.cpp b/llvm/lib/Target/X86/X86InstrInfo.cpp index 1b1c093e4eb..297c4dd175c 100644 --- a/llvm/lib/Target/X86/X86InstrInfo.cpp +++ b/llvm/lib/Target/X86/X86InstrInfo.cpp @@ -2525,7 +2525,7 @@ X86InstrInfo::unfoldMemoryOperand(SelectionDAG &DAG, SDNode *N, bool isAligned = (RI.getStackAlignment() >= 16) || RI.needsStackRealignment(MF); Load = DAG.getTargetNode(getLoadRegOpcode(0, RC, isAligned, TM), dl, - VT, EVT::Other, &AddrOps[0], AddrOps.size()); + VT, MVT::Other, &AddrOps[0], AddrOps.size()); NewNodes.push_back(Load); } @@ -2538,7 +2538,7 @@ X86InstrInfo::unfoldMemoryOperand(SelectionDAG &DAG, SDNode *N, } for (unsigned i = 0, e = N->getNumValues(); i != e; ++i) { EVT VT = N->getValueType(i); - if (VT != EVT::Other && i >= (unsigned)TID.getNumDefs()) + if (VT != MVT::Other && i >= (unsigned)TID.getNumDefs()) VTs.push_back(VT); } if (Load) @@ -2557,7 +2557,7 @@ X86InstrInfo::unfoldMemoryOperand(SelectionDAG &DAG, SDNode *N, RI.needsStackRealignment(MF); SDNode *Store = DAG.getTargetNode(getStoreRegOpcode(0, DstRC, isAligned, TM), - dl, EVT::Other, + dl, MVT::Other, &AddrOps[0], AddrOps.size()); NewNodes.push_back(Store); } |

