summaryrefslogtreecommitdiff
path: root/x86/machine.m4
diff options
context:
space:
mode:
Diffstat (limited to 'x86/machine.m4')
-rw-r--r--x86/machine.m410
1 files changed, 5 insertions, 5 deletions
diff --git a/x86/machine.m4 b/x86/machine.m4
index 38bee366..9f24ea0e 100644
--- a/x86/machine.m4
+++ b/x86/machine.m4
@@ -1,16 +1,16 @@
C OFFSET(i)
C Expands to 4*i, or to the empty string if i is zero
-define(<OFFSET>, <ifelse($1,0,,eval(4*$1))>)
+define(`OFFSET', `ifelse($1,0,,eval(4*$1))')
dnl LREG(reg) gives the 8-bit register corresponding to the given 32-bit register.
-define(<LREG>,<ifelse(
+define(`LREG',`ifelse(
$1, %eax, %al,
$1, %ebx, %bl,
$1, %ecx, %cl,
- $1, %edx, %dl)>)dnl
+ $1, %edx, %dl)')dnl
-define(<HREG>,<ifelse(
+define(`HREG',`ifelse(
$1, %eax, %ah,
$1, %ebx, %bh,
$1, %ecx, %ch,
- $1, %edx, %dh)>)dnl
+ $1, %edx, %dh)')dnl