summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2020-07-26 21:14:18 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2020-07-26 21:14:18 +0200
commit53ebb640a4f7cb638a2a40eeda0a0465a42b39d1 (patch)
tree3d819b54cd3948d2324cc72fafface2b3f3b8f55
parentb9adc27dff1de4b062523bd287757e1b82f56e8c (diff)
downloadcompilertests-53ebb640a4f7cb638a2a40eeda0a0465a42b39d1.tar.gz
compilertests-53ebb640a4f7cb638a2a40eeda0a0465a42b39d1.tar.bz2
asm-i386: minifix in debug output (REGISTER_AL)
-rw-r--r--ecomp-c/asm-i386.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ecomp-c/asm-i386.c b/ecomp-c/asm-i386.c
index d1d2f57..ef3dba1 100644
--- a/ecomp-c/asm-i386.c
+++ b/ecomp-c/asm-i386.c
@@ -796,7 +796,7 @@ typedef enum {
REGISTER_ECX = 1,
REGISTER_EDX = 2,
REGISTER_EBX = 3,
- REGISTER_AL = 0x10,
+ REGISTER_AL = 4,
REGISTER_UNKNOWN = 99
} Register;