projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
999aee2
)
Wrap a long line and add some parens to be consistent.
author
Bob Wilson
<bob.wilson@apple.com>
Tue, 16 Mar 2010 00:31:15 +0000
(
00:31
+0000)
committer
Bob Wilson
<bob.wilson@apple.com>
Tue, 16 Mar 2010 00:31:15 +0000
(
00:31
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98596
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/ARM/ARMLoadStoreOptimizer.cpp
patch
|
blob
|
history
diff --git
a/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
b/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
index 77dd466761500cb3c2959acade1bf43e1d65cf18..8fbcf45dfd63c912d125605e4d21fb04970e95c8 100644
(file)
--- a/
lib/Target/ARM/ARMLoadStoreOptimizer.cpp
+++ b/
lib/Target/ARM/ARMLoadStoreOptimizer.cpp
@@
-243,8
+243,9
@@
ARMLoadStoreOpt::MergeOps(MachineBasicBlock &MBB,
BaseKill = true; // New base is always killed right its use.
}
- bool isDPR = Opcode == ARM::VLDRD || Opcode == ARM::VSTRD;
- bool isDef = isi32Load(Opcode) || Opcode == ARM::VLDRS || Opcode == ARM::VLDRD;
+ bool isDPR = (Opcode == ARM::VLDRD || Opcode == ARM::VSTRD);
+ bool isDef = (isi32Load(Opcode) || Opcode == ARM::VLDRS ||
+ Opcode == ARM::VLDRD);
Opcode = getLoadStoreMultipleOpcode(Opcode);
MachineInstrBuilder MIB = (isAM4)
? BuildMI(MBB, MBBI, dl, TII->get(Opcode))