1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

Reduce indentation.

llvm-svn: 106819
This commit is contained in:
Bob Wilson 2010-06-25 04:12:31 +00:00
parent 8cbc00b2ac
commit 0a84b9b677

View File

@ -4537,14 +4537,13 @@ bool ARMTargetLowering::allowsUnalignedMemoryAccesses(EVT VT) const {
if (!Subtarget->hasV6Ops())
// Pre-v6 does not support unaligned mem access.
return false;
else {
// v6+ may or may not support unaligned mem access depending on the system
// configuration.
// FIXME: This is pretty conservative. Should we provide cmdline option to
// control the behaviour?
if (!Subtarget->isTargetDarwin())
return false;
}
// v6+ may or may not support unaligned mem access depending on the system
// configuration.
// FIXME: This is pretty conservative. Should we provide cmdline option to
// control the behaviour?
if (!Subtarget->isTargetDarwin())
return false;
switch (VT.getSimpleVT().SimpleTy) {
default: