aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-04-03 07:45:18 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-04-03 07:45:18 +0000
commit55a2dd079c25aeff66f518d3192a694641bef60a (patch)
treeb2ecdbdd0f6beaee90bca60f3d943ff730211496 /lib/Target
parent8c7fe0c6c47f0854f7d3e22934a22223e687a485 (diff)
downloadexternal_llvm-55a2dd079c25aeff66f518d3192a694641bef60a.zip
external_llvm-55a2dd079c25aeff66f518d3192a694641bef60a.tar.gz
external_llvm-55a2dd079c25aeff66f518d3192a694641bef60a.tar.bz2
Cosmetic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49156 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r--lib/Target/X86/X86ISelDAGToDAG.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/X86/X86ISelDAGToDAG.cpp b/lib/Target/X86/X86ISelDAGToDAG.cpp
index cc80348..e2e7633 100644
--- a/lib/Target/X86/X86ISelDAGToDAG.cpp
+++ b/lib/Target/X86/X86ISelDAGToDAG.cpp
@@ -1527,10 +1527,10 @@ SDNode *X86DAGToDAGISel::Select(SDOperand N) {
// If we have an index, generate an insert_subreg into undef.
AddToISelQueue(N0);
SDOperand Undef =
- SDOperand(CurDAG->getTargetNode(X86::IMPLICIT_DEF, NVT), 0);
+ SDOperand(CurDAG->getTargetNode(X86::IMPLICIT_DEF, NVT), 0);
SDOperand SRIdx = CurDAG->getTargetConstant(Idx, MVT::i32);
SDNode *ResNode = CurDAG->getTargetNode(X86::INSERT_SUBREG,
- NVT, Undef, N0, SRIdx);
+ NVT, Undef, N0, SRIdx);
#ifndef NDEBUG
DOUT << std::string(Indent-2, ' ') << "=> ";