Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
e4c80bf2
Commit
e4c80bf2
authored
Apr 16, 2007
by
Ian Lynagh
Browse files
Change tabs to spaces in string literals
parent
182bae9c
Changes
1
Hide whitespace changes
Inline
Side-by-side
compiler/main/DriverPipeline.hs
View file @
e4c80bf2
...
...
@@ -1106,18 +1106,18 @@ mk_pvm_wrapper_script pvm_executable pvm_executable_base sysMan = unlines $
""
,
"args: while ($a = shift(@ARGV)) {"
,
" if ( $a eq '+RTS' ) {"
,
"
$in_RTS_args = 1;"
,
"
$in_RTS_args = 1;"
,
" } elsif ( $a eq '-RTS' ) {"
,
"
$in_RTS_args = 0;"
,
"
$in_RTS_args = 0;"
,
" }"
,
" if ( $a eq '-d' && $in_RTS_args ) {"
,
"
$debug = '-';"
,
"
$debug = '-';"
,
" } elsif ( $a =~ /^-qN(
\\
d+)/ && $in_RTS_args ) {"
,
"
$nprocessors = $1;"
,
"
$nprocessors = $1;"
,
" } elsif ( $a =~ /^-qp(
\\
d+)/ && $in_RTS_args ) {"
,
"
$nprocessors = $1;"
,
"
$nprocessors = $1;"
,
" } else {"
,
"
push(@nonPVM_args, $a);"
,
"
push(@nonPVM_args, $a);"
,
" }"
,
"}"
,
""
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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