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
b2a8f430
Commit
b2a8f430
authored
Aug 22, 2012
by
Matthias Braun
Browse files
remove unnecessary irma_unitialized
parent
0578be52
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/libfirm/irmode.h
View file @
b2a8f430
...
...
@@ -48,7 +48,6 @@
* mode.
*/
typedef
enum
ir_mode_arithmetic
{
irma_uninitialized
=
0
,
irma_none
=
1
,
/**< For modes for which no representation is
specified. These are modes of sort auxiliary,
internal_boolean and character. */
...
...
ir/ir/irio.c
View file @
b2a8f430
...
...
@@ -276,7 +276,6 @@ static void symtbl_init(void)
INSERTENUM
(
tt_initializer
,
IR_INITIALIZER_NULL
);
INSERTENUM
(
tt_initializer
,
IR_INITIALIZER_COMPOUND
);
INSERT
(
tt_mode_arithmetic
,
"uninitialized"
,
irma_uninitialized
);
INSERT
(
tt_mode_arithmetic
,
"none"
,
irma_none
);
INSERT
(
tt_mode_arithmetic
,
"twos_complement"
,
irma_twos_complement
);
INSERT
(
tt_mode_arithmetic
,
"ieee754"
,
irma_ieee754
);
...
...
@@ -331,7 +330,6 @@ static const char *get_visibility_name(ir_visibility visibility)
static
const
char
*
get_mode_arithmetic_name
(
ir_mode_arithmetic
arithmetic
)
{
switch
(
arithmetic
)
{
case
irma_uninitialized
:
return
"uninitialized"
;
case
irma_none
:
return
"none"
;
case
irma_twos_complement
:
return
"twos_complement"
;
case
irma_ieee754
:
return
"ieee754"
;
...
...
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