Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cmucl
cmucl
Commits
434078e9
Commit
434078e9
authored
Oct 09, 2014
by
Raymond Toy
Browse files
On sparc, use EXTERN_ALIEN_NAME too when printing out the error message.
parent
a1946b35
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lisp/os-common.c
View file @
434078e9
...
...
@@ -223,8 +223,9 @@ os_foreign_linkage_init(void)
if
(
i
==
0
)
{
#if defined(sparc)
if
(
type
!=
LINKAGE_CODE_TYPE
||
strcmp
(
c_symbol_name
,
EXTERN_ALIEN_NAME
(
"call_into_c"
)))
{
fprintf
(
stderr
,
"linkage_data is %s but expected call_into_c
\n
"
,
c_symbol_name
);
fprintf
(
stderr
,
"linkage_data is %s but expected %s
\n
"
,
c_symbol_name
,
EXTERN_ALIEN_NAME
(
"call_into_c"
));
lose
(
"First element of linkage_data is bogus.
\n
"
);
}
arch_make_linkage_entry
(
i
,
(
void
*
)
call_into_c
,
1
);
...
...
Write
Preview
Markdown
is supported
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