| OLD | NEW |
| 1 @hex: | 1 @hex: |
| 2 # Legacy instructions which are invalid in 64-bit mode | 2 # Legacy instructions which are invalid in 64-bit mode |
| 3 | 3 |
| 4 # aaa | 4 # aaa |
| 5 37 | 5 37 |
| 6 @dis: | 6 @dis: |
| 7 0: 37 (bad) | 7 0: 37 (bad) |
| 8 @rdfa_output: | 8 @rdfa_output: |
| 9 0: unrecognized instruction | 9 0: unrecognized instruction |
| 10 return code: 1 | 10 return code: 1 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 @rdfa_output: | 45 @rdfa_output: |
| 46 0: unrecognized instruction | 46 0: unrecognized instruction |
| 47 return code: 1 | 47 return code: 1 |
| 48 @spec: | 48 @spec: |
| 49 0: ('objdump failed to decode', Instruction(0x0: 3f (bad))) | 49 0: ('objdump failed to decode', Instruction(0x0: 3f (bad))) |
| 50 ---------------------------------------------------------------------- | 50 ---------------------------------------------------------------------- |
| 51 @hex: | 51 @hex: |
| 52 # bound %eax, (%eax) | 52 # bound %eax, (%eax) |
| 53 62 00 | 53 62 00 |
| 54 @dis: | 54 @dis: |
| 55 0:»62 » (bad) | 55 0:»62 » .byte 0x62 |
| 56 1: 00 .byte 0x0 | 56 1: 00 .byte 0x0 |
| 57 @rdfa_output: | 57 @rdfa_output: |
| 58 0: unrecognized instruction | 58 0: unrecognized instruction |
| 59 return code: 1 | 59 return code: 1 |
| 60 @spec: | 60 @spec: |
| 61 0: ('objdump failed to decode', Instruction(0x0: 62 (bad))) | 61 0: ('objdump failed to decode', Instruction(0x0: 62 .byte 0x62)) |
| 62 1: ('objdump failed to decode', Instruction(0x1: 00 .byte 0x0)) | 62 1: ('objdump failed to decode', Instruction(0x1: 00 .byte 0x0)) |
| 63 ---------------------------------------------------------------------- | 63 ---------------------------------------------------------------------- |
| 64 @hex: | 64 @hex: |
| 65 # daa | 65 # daa |
| 66 27 | 66 27 |
| 67 @dis: | 67 @dis: |
| 68 0: 27 (bad) | 68 0: 27 (bad) |
| 69 @rdfa_output: | 69 @rdfa_output: |
| 70 0: unrecognized instruction | 70 0: unrecognized instruction |
| 71 return code: 1 | 71 return code: 1 |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 # Flag instructions depend on CPUFeature_LAHF. | 143 # Flag instructions depend on CPUFeature_LAHF. |
| 144 9F | 144 9F |
| 145 9E | 145 9E |
| 146 @dis: | 146 @dis: |
| 147 0: 9f lahf | 147 0: 9f lahf |
| 148 1: 9e sahf | 148 1: 9e sahf |
| 149 @rdfa_output: | 149 @rdfa_output: |
| 150 return code: 0 | 150 return code: 0 |
| 151 @spec: | 151 @spec: |
| 152 SAFE | 152 SAFE |
| OLD | NEW |