mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-26 07:24:25 +00:00
Reduce indentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106819 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -4537,14 +4537,13 @@ bool ARMTargetLowering::allowsUnalignedMemoryAccesses(EVT VT) const {
|
|||||||
if (!Subtarget->hasV6Ops())
|
if (!Subtarget->hasV6Ops())
|
||||||
// Pre-v6 does not support unaligned mem access.
|
// Pre-v6 does not support unaligned mem access.
|
||||||
return false;
|
return false;
|
||||||
else {
|
|
||||||
// v6+ may or may not support unaligned mem access depending on the system
|
// v6+ may or may not support unaligned mem access depending on the system
|
||||||
// configuration.
|
// configuration.
|
||||||
// FIXME: This is pretty conservative. Should we provide cmdline option to
|
// FIXME: This is pretty conservative. Should we provide cmdline option to
|
||||||
// control the behaviour?
|
// control the behaviour?
|
||||||
if (!Subtarget->isTargetDarwin())
|
if (!Subtarget->isTargetDarwin())
|
||||||
return false;
|
return false;
|
||||||
}
|
|
||||||
|
|
||||||
switch (VT.getSimpleVT().SimpleTy) {
|
switch (VT.getSimpleVT().SimpleTy) {
|
||||||
default:
|
default:
|
||||||
|
Reference in New Issue
Block a user