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
d8ed0076
Commit
d8ed0076
authored
Aug 01, 2008
by
Michael Beck
Browse files
fixed const
[r20887]
parent
39b5f1b3
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/test/nulladd.c
View file @
d8ed0076
#include <stdlib.h>
#include <stdio.h>
static
const
int
*
a
=
(
int
*
)
0x10
;
static
const
int
*
b
=
(
int
*
)
0x20
;
static
int
*
const
a
=
(
int
*
)
0x10
;
static
int
*
const
b
=
(
int
*
)
0x20
;
int
main
()
{
printf
(
"%p
\n
"
,
b
-
a
);
...
...
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