Bug 1036782 - Replace MOZ_ASSUME_UNREACHABLE with MOZ_CRASH in js/src. r=jorendorff

This commit is contained in:
Chris Peterson
2014-07-14 19:14:54 -07:00
parent 68c2f09388
commit 2ff2fed875
46 changed files with 267 additions and 263 deletions

View File

@@ -678,7 +678,7 @@ GetBytecodeInteger(jsbytecode *pc)
case JSOP_INT8: return GET_INT8(pc);
case JSOP_INT32: return GET_INT32(pc);
default:
MOZ_ASSUME_UNREACHABLE("Bad op");
MOZ_CRASH("Bad op");
}
}