Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Shayne Fletcher
Glasgow Haskell Compiler
Commits
b99be402
Commit
b99be402
authored
Mar 26, 2001
by
simonmar
Browse files
[project @ 2001-03-26 16:52:03 by simonmar]
if the STOLEN_X86_REGS arg is missing, assume 4.
parent
ce424aec
Changes
1
Hide whitespace changes
Inline
Side-by-side
ghc/driver/mangler/ghc-asm.lprl
View file @
b99be402
...
...
@@ -66,7 +66,11 @@ $ifile = $ARGV[0];
$ofile = $ARGV[1];
if ( $TargetPlatform =~ /^i386-/ ) {
$StolenX86Regs = $ARGV[2];
if ($ARGV[2] eq '') {
$StolenX86Regs = 4;
} else {
$StolenX86Regs = $ARGV[2];
}
}
&mangle_asm($ifile,$ofile);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment