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
b7af771b
Commit
b7af771b
authored
Aug 04, 2006
by
Matthias Braun
Browse files
warning fix
parent
ff9b2389
Changes
4
Hide whitespace changes
Inline
Side-by-side
ir/be/benode.c
View file @
b7af771b
...
@@ -1369,7 +1369,6 @@ static int dump_node(ir_node *irn, FILE *f, dump_reason_t reason)
...
@@ -1369,7 +1369,6 @@ static int dump_node(ir_node *irn, FILE *f, dump_reason_t reason)
case
beo_MemPerm
:
case
beo_MemPerm
:
{
{
int
i
;
int
i
;
be_memperm_attr_t
*
a
=
(
be_memperm_attr_t
*
)
at
;
for
(
i
=
0
;
i
<
get_irn_arity
(
irn
);
++
i
)
{
for
(
i
=
0
;
i
<
get_irn_arity
(
irn
);
++
i
)
{
entity
*
in
,
*
out
;
entity
*
in
,
*
out
;
in
=
be_get_MemPerm_in_entity
(
irn
,
i
);
in
=
be_get_MemPerm_in_entity
(
irn
,
i
);
...
...
ir/be/bespillremat.c
View file @
b7af771b
...
@@ -3977,7 +3977,7 @@ walker_spillslotassigner(ir_node * irn, void * data)
...
@@ -3977,7 +3977,7 @@ walker_spillslotassigner(ir_node * irn, void * data)
if
(
!
be_is_Spill
(
irn
))
return
;
if
(
!
be_is_Spill
(
irn
))
return
;
/* set spill context to phi class if it has one ;) */
/* set spill context to phi class if it has one ;) */
(
void
)
cls
;
#if 0
#if 0
// Matze: not needed anymore
// Matze: not needed anymore
cls = get_phi_class(irn);
cls = get_phi_class(irn);
...
...
ir/be/test/makereport.sh
View file @
b7af771b
EDG_CFLAGS
=
"
-b ra-chordal-spill=belady -b ia32-arch=athlon -b ia32-fpunit=x87
--c --gnu=400002 -I/usr/lib/gcc-lib/i586-suse-linux/3.3.5/include"
EDG_CFLAGS
=
"--c --gnu=400002 -I/usr/lib/gcc-lib/i586-suse-linux/3.3.5/include"
GCC_CFLAGS
=
"-O3 -g -fomit-frame-pointer"
GCC_CFLAGS
=
"-O3 -g -fomit-frame-pointer"
LINKFLAGS
=
"-lm"
LINKFLAGS
=
"-lm"
...
...
ir/be/test/simd1.c
View file @
b7af771b
...
@@ -24,7 +24,8 @@ unsigned int sse8_16bit_c( const short * b1,
...
@@ -24,7 +24,8 @@ unsigned int sse8_16bit_c( const short * b1,
return
(
sse
);
return
(
sse
);
}
}
#define MAX 65536
//#define MAX 65536
#define MAX 32
int
main
(){
int
main
(){
short
cur
[
MAX
];
short
cur
[
MAX
];
...
...
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