summaryrefslogtreecommitdiff
path: root/lib/CodeGen/ScheduleDAGInstrs.cpp
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2014-02-25 00:43:21 +0000
committerNick Lewycky <nicholas@mxc.ca>2014-02-25 00:43:21 +0000
commit88546b6641dc7c1d79f38b1a52f9b31807cb0a77 (patch)
tree5eed3fef4a4861270866c52b107939362b540eca /lib/CodeGen/ScheduleDAGInstrs.cpp
parentc537759a7f20f3f58b0e0d52ebe1e9dea3551c44 (diff)
downloadllvm-88546b6641dc7c1d79f38b1a52f9b31807cb0a77.tar.gz
llvm-88546b6641dc7c1d79f38b1a52f9b31807cb0a77.tar.bz2
llvm-88546b6641dc7c1d79f38b1a52f9b31807cb0a77.tar.xz
Indent this continued line.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202096 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/ScheduleDAGInstrs.cpp')
-rw-r--r--lib/CodeGen/ScheduleDAGInstrs.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/CodeGen/ScheduleDAGInstrs.cpp b/lib/CodeGen/ScheduleDAGInstrs.cpp
index 88cc313e76..3bd75c0aa4 100644
--- a/lib/CodeGen/ScheduleDAGInstrs.cpp
+++ b/lib/CodeGen/ScheduleDAGInstrs.cpp
@@ -565,10 +565,10 @@ static bool MIsNeedChainEdge(AliasAnalysis *AA, const MachineFrameInfo *MFI,
int64_t Overlapb = MMOb->getSize() + MMOb->getOffset() - MinOffset;
AliasAnalysis::AliasResult AAResult = AA->alias(
- AliasAnalysis::Location(MMOa->getValue(), Overlapa,
- UseTBAA ? MMOa->getTBAAInfo() : 0),
- AliasAnalysis::Location(MMOb->getValue(), Overlapb,
- UseTBAA ? MMOb->getTBAAInfo() : 0));
+ AliasAnalysis::Location(MMOa->getValue(), Overlapa,
+ UseTBAA ? MMOa->getTBAAInfo() : 0),
+ AliasAnalysis::Location(MMOb->getValue(), Overlapb,
+ UseTBAA ? MMOb->getTBAAInfo() : 0));
return (AAResult != AliasAnalysis::NoAlias);
}