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
a01bb4cc
Commit
a01bb4cc
authored
Sep 12, 2007
by
Matthias Braun
Browse files
edge case for 64bit add where add with flag output is CSEd
[r15757]
parent
7a6efcac
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/test/add64.c
0 → 100644
View file @
a01bb4cc
long
long
f
(
long
long
a
,
long
long
b
)
{
long
long
c
=
(
a
&
0xffffffff
)
|
0x100000000
;
return
a
+
b
+
c
;
}
int
main
(
int
argc
,
char
**
argv
)
{
printf
(
"Res: %llx
\n
"
,
f
(
0x100000000
,
0x100000000
));
}
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