commit | d4c4d953035d4418126d36517e402f411d6a87f3 | [log] [tgz] |
---|---|---|
author | Ian Rogers <irogers@google.com> | Thu Oct 16 20:31:53 2014 -0700 |
committer | Ian Rogers <irogers@google.com> | Thu Oct 16 21:30:37 2014 -0700 |
tree | 735aacf812bbac7c1ae7c0788c1ca6f58cfa82ee | |
parent | 6f3dbbadf4ce66982eb3d400e0a74cb73eb034f3 [diff] [blame] |
Some code clean-up. Change-Id: I4b745fd5298cd61c793e3b57514b48347bd66c0e
diff --git a/compiler/trampolines/trampoline_compiler.cc b/compiler/trampolines/trampoline_compiler.cc index 6da375a..e793c6b 100644 --- a/compiler/trampolines/trampoline_compiler.cc +++ b/compiler/trampolines/trampoline_compiler.cc
@@ -166,7 +166,7 @@ return x86_64::CreateTrampoline(offset); default: LOG(FATAL) << "Unexpected InstructionSet: " << isa; - return nullptr; + UNREACHABLE(); } } @@ -182,7 +182,7 @@ return x86::CreateTrampoline(offset); default: LOG(FATAL) << "Unexpected InstructionSet: " << isa; - return nullptr; + UNREACHABLE(); } }