[arm64]: Fix bug introduced accidentally in r30710

Uncomment the if (!serializer_enabled()) check which I accidentially left
commented out after debugging during the CLs development.

BUG=chromium:532969
R=bmeurer@chromium.org
LOG=n

Review URL: https://codereview.chromium.org/1351943002

Cr-Commit-Position: refs/heads/master@{#30811}
This commit is contained in:
rmcilroy 2015-09-17 10:24:13 -07:00 committed by Commit bot
parent 92eed98b14
commit 2088752c70

View File

@ -2246,7 +2246,7 @@ void Assembler::debug(const char* message, uint32_t code, Instr params) {
#ifdef USE_SIMULATOR
// Don't generate simulator specific code if we are building a snapshot, which
// might be run on real hardware.
// if (!serializer_enabled()) {
if (!serializer_enabled()) {
// The arguments to the debug marker need to be contiguous in memory, so
// make sure we don't try to emit pools.
BlockPoolsScope scope(this);
@ -2266,7 +2266,7 @@ void Assembler::debug(const char* message, uint32_t code, Instr params) {
hlt(kImmExceptionIsUnreachable);
return;
// }
}
// Fall through if Serializer is enabled.
#endif