diff options
author | Diana Picus <diana.picus@linaro.org> | 2018-01-31 15:16:17 +0000 |
---|---|---|
committer | Diana Picus <diana.picus@linaro.org> | 2018-01-31 15:16:17 +0000 |
commit | 12ed95e3e7b5ed4866421968a2c10cad3892cc08 (patch) | |
tree | 87a4a4aab03241f098b3eb0037251e90c352099a /llvm/lib | |
parent | 1b66deea1694421e0ea0f2648d41ffb6456703bf (diff) | |
download | bcm5719-llvm-12ed95e3e7b5ed4866421968a2c10cad3892cc08.tar.gz bcm5719-llvm-12ed95e3e7b5ed4866421968a2c10cad3892cc08.zip |
Fix formatting for r323876. NFC
llvm-svn: 323878
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/ARM/ARMLegalizerInfo.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/Target/ARM/ARMLegalizerInfo.cpp b/llvm/lib/Target/ARM/ARMLegalizerInfo.cpp index f9885f2655e..dcf80fafb90 100644 --- a/llvm/lib/Target/ARM/ARMLegalizerInfo.cpp +++ b/llvm/lib/Target/ARM/ARMLegalizerInfo.cpp @@ -125,12 +125,12 @@ ARMLegalizerInfo::ARMLegalizerInfo(const ARMSubtarget &ST) { // We're keeping these builders around because we'll want to add support for // floating point to them. - auto &LoadStoreBuilder = getActionDefinitionsBuilder({G_LOAD, G_STORE}).legalForCartesianProduct( - {s1, s8, s16, s32, p0}, {p0}); + auto &LoadStoreBuilder = + getActionDefinitionsBuilder({G_LOAD, G_STORE}) + .legalForCartesianProduct({s1, s8, s16, s32, p0}, {p0}); - auto &PhiBuilder = getActionDefinitionsBuilder(G_PHI) - .legalFor({s32, p0}) - .minScalar(0, s32); + auto &PhiBuilder = + getActionDefinitionsBuilder(G_PHI).legalFor({s32, p0}).minScalar(0, s32); if (!ST.useSoftFloat() && ST.hasVFP2()) { getActionDefinitionsBuilder( |