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
96a858dc
Commit
96a858dc
authored
Mar 29, 2007
by
Matthias Braun
Browse files
- change #include <config.h> back to "config.h"
- more work on state registers for x87 fpu rounding modes [r8743]
parent
10c42ecf
Changes
8
Hide whitespace changes
Inline
Side-by-side
ir/adt/cpset.c
View file @
96a858dc
#include
<
config.h
>
#include
"
config.h
"
#include "cpset.h"
...
...
ir/adt/pmap.c
View file @
96a858dc
...
...
@@ -11,7 +11,7 @@
* Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
*/
#ifdef HAVE_CONFIG_H
# include
<
config.h
>
# include
"
config.h
"
#endif
#include "pmap.h"
...
...
ir/ana/analyze_irg_args.c
View file @
96a858dc
...
...
@@ -288,9 +288,11 @@ void analyze_irg_args(ir_graph *irg)
ptr_access_kind
get_method_param_access
(
ir_entity
*
ent
,
int
pos
)
{
ir_type
*
mtp
=
get_entity_type
(
ent
);
int
is_variadic
=
get_method_variadicity
(
mtp
)
==
variadicity_variadic
;
#ifndef NDEBUG
int
is_variadic
=
get_method_variadicity
(
mtp
)
==
variadicity_variadic
;
assert
(
0
<=
pos
&&
(
is_variadic
||
pos
<
get_method_n_params
(
mtp
)));
#endif
if
(
ent
->
attr
.
mtd_attr
.
param_access
)
{
if
(
pos
<
ARR_LEN
(
ent
->
attr
.
mtd_attr
.
param_access
))
...
...
@@ -444,9 +446,11 @@ static void analyze_method_params_weight(ir_entity *ent)
float
get_method_param_weight
(
ir_entity
*
ent
,
int
pos
)
{
ir_type
*
mtp
=
get_entity_type
(
ent
);
int
is_variadic
=
get_method_variadicity
(
mtp
)
==
variadicity_variadic
;
#ifndef NDEBUG
int
is_variadic
=
get_method_variadicity
(
mtp
)
==
variadicity_variadic
;
assert
(
0
<=
pos
&&
(
is_variadic
||
pos
<
get_method_n_params
(
mtp
)));
#endif
if
(
ent
->
attr
.
mtd_attr
.
param_weight
)
{
if
(
pos
<
ARR_LEN
(
ent
->
attr
.
mtd_attr
.
param_weight
))
...
...
ir/common/firm.c
View file @
96a858dc
...
...
@@ -10,7 +10,7 @@
* Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
*/
#ifdef HAVE_CONFIG_H
# include
<
config.h
>
# include
"
config.h
"
#endif
#ifdef HAVE_STRING_H
...
...
ir/ir/iredges.c
View file @
96a858dc
...
...
@@ -17,7 +17,7 @@
*/
#ifdef HAVE_CONFIG_H
#include
<
config.h
>
#include
"
config.h
"
#endif
#ifdef HAVE_ALLOCA_H
...
...
ir/ir/irgopt.c
View file @
96a858dc
...
...
@@ -10,7 +10,7 @@
* Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
*/
#ifdef HAVE_CONFIG_H
# include
<
config.h
>
# include
"
config.h
"
#endif
#include <assert.h>
...
...
ir/ir/irnode_t.h
View file @
96a858dc
...
...
@@ -422,9 +422,11 @@ static INLINE ir_node *
_get_irn_intra_n
(
const
ir_node
*
node
,
int
n
)
{
ir_node
*
nn
;
assert
(
node
);
assert
(
-
1
<=
n
&&
n
<
_get_irn_intra_arity
(
node
));
assert
(
node
);
assert
(
-
1
<=
n
&&
n
<
_get_irn_intra_arity
(
node
));
nn
=
node
->
in
[
n
+
1
];
assert
(
nn
!=
NULL
);
if
(
!
nn
||
(
nn
->
op
!=
op_Id
))
return
nn
;
return
(
node
->
in
[
n
+
1
]
=
skip_Id
(
nn
));
...
...
ir/ir/irnodeset.c
View file @
96a858dc
...
...
@@ -6,7 +6,7 @@
tries to guarantee deterministic behavior.
* @version $Id$
*/
#include
<
config.h
>
#include
"
config.h
"
#include "irnodeset.h"
#include "hashptr.h"
...
...
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