De-tab and reindent after 7c807242e0b1

Change-Id: Ia68aa8294aa57d713066fbadd2200089e50e315b
Reviewed-on: https://chromium-review.googlesource.com/368030
Reviewed-by: Scott Graham <scottmg@chromium.org>
This commit is contained in:
Mark Mentovai 2016-08-10 21:09:17 -04:00
parent 56b14bceef
commit 073ce275e0

View File

@ -286,15 +286,14 @@ class TestMachOImageAnnotationsReader final
break;
case kCrashDyld:
// Prior to 10.12, dyld fatal errors result in the execution of an
// int3 instruction on x86 and a trap instruction on ARM, both of
// which raise SIGTRAP. 10.9.5 dyld-239.4/src/dyldStartup.s
// _dyld_fatal_error. This changed in 10.12 to use
// abort_with_payload(), which appears as SIGABRT to a waiting
// parent.
SetExpectedChildTermination(
kTerminationSignal,
MacOSXMinorVersion() < 12 ? SIGTRAP : SIGABRT);
// Prior to 10.12, dyld fatal errors result in the execution of an
// int3 instruction on x86 and a trap instruction on ARM, both of
// which raise SIGTRAP. 10.9.5 dyld-239.4/src/dyldStartup.s
// _dyld_fatal_error. This changed in 10.12 to use
// abort_with_payload(), which appears as SIGABRT to a waiting parent.
SetExpectedChildTermination(
kTerminationSignal,
MacOSXMinorVersion() < 12 ? SIGTRAP : SIGABRT);
break;
default: