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
70630892
Commit
70630892
authored
Sep 13, 2007
by
Michael Beck
Browse files
improved test
[r15777]
parent
0fd196b3
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/test/mul2n.c
View file @
70630892
...
...
@@ -5,7 +5,9 @@ int a = 0x80000000;
int
main
(
void
)
{
long
long
x
=
(
long
long
)
a
*
a
;
unsigned
long
long
x
=
3
*
(
unsigned
long
long
)
a
;
printf
(
"%lld
\n
"
,
x
);
x
=
(
unsigned
long
long
)
a
*
(
unsigned
long
long
)
a
;
printf
(
"%lld
\n
"
,
x
);
return
0
;
}
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