diff options
author | Hsiangkai Wang <hsiangkai@gmail.com> | 2018-07-31 06:09:29 +0000 |
---|---|---|
committer | Hsiangkai Wang <hsiangkai@gmail.com> | 2018-07-31 06:09:29 +0000 |
commit | 615540d0f27b25f5f8761b6319548faf5f9084a3 (patch) | |
tree | fe4471cb17eabe048aac768c273f5414dceb17ff /llvm/lib/CodeGen | |
parent | 2f6769be603befdf04f81ecc19731208d8060554 (diff) | |
download | bcm5719-llvm-615540d0f27b25f5f8761b6319548faf5f9084a3.tar.gz bcm5719-llvm-615540d0f27b25f5f8761b6319548faf5f9084a3.zip |
Test commit.
llvm-svn: 338352
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp index 6750c771f02..e317268fa5f 100644 --- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -3993,7 +3993,7 @@ TargetLowering::expandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG) const { // Scalarize the load and let the individual components be handled. SDValue Scalarized = scalarizeVectorLoad(LD, DAG); if (Scalarized->getOpcode() == ISD::MERGE_VALUES) - return std::make_pair(Scalarized.getOperand(0), Scalarized.getOperand(1)); + return std::make_pair(Scalarized.getOperand(0), Scalarized.getOperand(1)); return std::make_pair(Scalarized.getValue(0), Scalarized.getValue(1)); } |