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
Glasgow Haskell Compiler
GHC
Commits
dee01d20
Commit
dee01d20
authored
Aug 04, 2008
by
Simon Marlow
Browse files
FIX BUILD on Windows
parent
c2d0219a
Changes
1
Hide whitespace changes
Inline
Side-by-side
rts/Linker.c
View file @
dee01d20
...
...
@@ -2534,13 +2534,9 @@ ocResolve_PEi386 ( ObjectCode* oc )
+
sym
->
Value
);
}
else
{
copyName
(
sym
->
Name
,
strtab
,
symbol
,
1000
-
1
);
S
=
(
UInt32
)
lookupLocalSymbol
(
oc
,
symbol
);
if
((
void
*
)
S
!=
NULL
)
goto
foundit
;
S
=
(
UInt32
)
lookupSymbol
(
symbol
);
if
((
void
*
)
S
!=
NULL
)
goto
foundit
;
zapTrailingAtSign
(
symbol
);
S
=
(
UInt32
)
lookupLocalSymbol
(
oc
,
symbol
);
if
((
void
*
)
S
!=
NULL
)
goto
foundit
;
S
=
(
UInt32
)
lookupSymbol
(
symbol
);
if
((
void
*
)
S
!=
NULL
)
goto
foundit
;
/* Newline first because the interactive linker has printed "linking..." */
...
...
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