| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 The Native Client Authors. All rights reserved. | 2 * Copyright 2012 The Native Client Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can | 3 * Use of this source code is governed by a BSD-style license that can |
| 4 * be found in the LICENSE file. | 4 * be found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 #include "native_client/src/trusted/service_runtime/arch/mips/sel_rt.h" | 7 #include "native_client/src/trusted/service_runtime/arch/mips/sel_rt.h" |
| 8 #include "native_client/src/trusted/service_runtime/nacl_config.h" | 8 #include "native_client/src/trusted/service_runtime/nacl_config.h" |
| 9 | 9 |
| 10 .text | 10 .text |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 jr $t9 | 118 jr $t9 |
| 119 nop | 119 nop |
| 120 | 120 |
| 121 /* NOTREACHED */ | 121 /* NOTREACHED */ |
| 122 | 122 |
| 123 /* | 123 /* |
| 124 * If the thread returns, which must not happen, it will be halted | 124 * If the thread returns, which must not happen, it will be halted |
| 125 * by the following instruction | 125 * by the following instruction |
| 126 */ | 126 */ |
| 127 | 127 |
| 128 jr $0 /*NACL_HALT*/ | 128 NACL_HALT |
| 129 | 129 |
| OLD | NEW |