pike.git/
src/
code/
amd64.c
Branch:
Tag:
Non-build tags
All tags
No tags
2017-01-21
2017-01-21 07:11:42 by Henrik Grubbström (Grubba) <grubba@grubba.org>
bbc633a86edfa23ec21d69e47075d65bb4a3cbce (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
8.1
Compiler
[amd64]
: Fixed disassembler table typo.
4537:
static const char *modrm_ops[6][8] = { /* #0: ALU operations (Opcodes 0x80, 0x81, 0x83). */ {
-
"add", "or", "adc",
"and"
,
-
NULL
, "sub", NULL, "cmp",
+
"add", "or", "adc",
NULL
,
+
"and"
, "sub", NULL, "cmp",
}, /* #1: Shift operations */ {