diff options
author | Sanjay Patel <spatel@rotateright.com> | 2015-03-26 16:55:17 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2015-03-26 16:55:17 +0000 |
commit | d95dd9e5fb23305b0be5eeb97b79a18c27ba09b2 (patch) | |
tree | b7f3d2cab15ab3acc4d241af784b007361582d17 /llvm/lib | |
parent | c7fd5ff7459242aaca253a06f108514162e6dbb2 (diff) | |
download | bcm5719-llvm-d95dd9e5fb23305b0be5eeb97b79a18c27ba09b2.tar.gz bcm5719-llvm-d95dd9e5fb23305b0be5eeb97b79a18c27ba09b2.zip |
fix indent; NFC
llvm-svn: 233288
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 8b3d0570437..a1c84c5cf09 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -11979,7 +11979,7 @@ SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) { // We may have jumped through bitcasts, so the type of the // BUILD_VECTOR may not match the type of the shuffle. if (V->getValueType(0) != VT) - NewBV = DAG.getNode(ISD::BITCAST, SDLoc(N), VT, NewBV); + NewBV = DAG.getNode(ISD::BITCAST, SDLoc(N), VT, NewBV); return NewBV; } } |