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
de01926f
Commit
de01926f
authored
Mar 12, 2014
by
yb9976
Browse files
Fixed warning.
parent
df6a8666
Changes
1
Show whitespace changes
Inline
Side-by-side
ir/ir/iropt.c
View file @
de01926f
...
...
@@ -6278,7 +6278,7 @@ static ir_node *extract_from_initializer(const ir_type *type,
if
(
offset
<
0
)
return
NULL
;
unsigned
size
=
get_type_size_bytes
(
type
);
if
(
offset
>=
size
)
if
(
(
unsigned
long
)
offset
>=
size
)
return
NULL
;
ir_tarval
*
tv
;
...
...
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