Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions code/qcommon/vm_aarch64.c
Original file line number Diff line number Diff line change
Expand Up @@ -1681,9 +1681,6 @@ qboolean VM_Compile( vm_t *vm, vmHeader_t *header )
switch ( ci->op )
{
case OP_UNDEF:
emit( BRK( 0 ) );
break;

case OP_IGNORE:
ip += ci->value;
break;
Expand Down
3 changes: 0 additions & 3 deletions code/qcommon/vm_armv7l.c
Original file line number Diff line number Diff line change
Expand Up @@ -1296,9 +1296,6 @@ qboolean VM_Compile( vm_t *vm, vmHeader_t *header )
switch ( ci->op )
{
case OP_UNDEF:
emit(BKPT(1));
break;

case OP_IGNORE:
ip += ci->value;
break;
Expand Down
2 changes: 1 addition & 1 deletion code/qcommon/vm_interpreted.c
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ int VM_CallInterpreted2( vm_t *vm, int nargs, int32_t *args ) {
ci++;

switch ( opcode ) {

case OP_UNDEF:
case OP_IGNORE:
ci += v0;
goto nextInstruction2;
Expand Down
3 changes: 0 additions & 3 deletions code/qcommon/vm_powerpc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1893,9 +1893,6 @@ qboolean VM_Compile( vm_t *vm, vmHeader_t *header )
switch ( ci->op )
{
case OP_UNDEF:
emit( PPC_TRAP() );
break;

case OP_IGNORE:
ip += ci->value;
break;
Expand Down
3 changes: 0 additions & 3 deletions code/qcommon/vm_x86.c
Original file line number Diff line number Diff line change
Expand Up @@ -2913,9 +2913,6 @@ qboolean VM_Compile( vm_t *vm, vmHeader_t *header ) {
switch ( ci->op ) {

case OP_UNDEF:
emit_brk(); // int 3
break;

case OP_IGNORE:
ip += ci->value;
break;
Expand Down