Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
df2b9574
Commit
df2b9574
authored
Apr 13, 2011
by
Matthias Braun
Browse files
panic if TLS is found in sparc backend
parent
5bc78d88
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/sparc/sparc_transform.c
View file @
df2b9574
...
...
@@ -903,6 +903,9 @@ static ir_node *make_address(dbg_info *dbgi, ir_node *block, ir_entity *entity,
{
ir_node
*
hi
=
new_bd_sparc_SetHi
(
dbgi
,
block
,
entity
,
offset
);
ir_node
*
low
=
new_bd_sparc_Or_imm
(
dbgi
,
block
,
hi
,
entity
,
offset
);
if
(
get_entity_owner
(
entity
)
==
get_tls_type
())
panic
(
"thread local storage not supported yet in sparc backend"
);
return
low
;
}
...
...
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