Skip to content
Snippets Groups Projects
Commit 0cbf71e0 authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1998-04-17 10:13:36 by simonm]

- support the .p2align directive on x86 a.out architectures.  This
  might be required for others, too.
parent ec3650db
No related branches found
No related tags found
No related merge requests found
...@@ -117,7 +117,7 @@ sub init_TARGET_STUFF { ...@@ -117,7 +117,7 @@ sub init_TARGET_STUFF {
$T_X86_PRE_LLBL = 'L'; $T_X86_PRE_LLBL = 'L';
$T_X86_BADJMP = '^\tjmp [^L\*]'; $T_X86_BADJMP = '^\tjmp [^L\*]';
$T_MOVE_DIRVS = '^(\s*(\.align\s+\d+(,0x90)?|\.globl\s+\S+|\.text|\.data|\.stab[^n].*|\.type\s+.*|\.size\s+.*)\n)'; $T_MOVE_DIRVS = '^(\s*(\.(p2)?align\s+\d+(,0x90)?|\.globl\s+\S+|\.text|\.data|\.stab[^n].*|\.type\s+.*|\.size\s+.*)\n)';
$T_COPY_DIRVS = '\.(globl|stab)'; $T_COPY_DIRVS = '\.(globl|stab)';
$T_hsc_cc_PAT = '\.ascii.*\)(hsc|cc) (.*)\\\\11"\n\t\.ascii\s+"(.*)\\\\0"'; $T_hsc_cc_PAT = '\.ascii.*\)(hsc|cc) (.*)\\\\11"\n\t\.ascii\s+"(.*)\\\\0"';
$T_DOT_WORD = '\.long'; $T_DOT_WORD = '\.long';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment