Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
da784a91
Commit
da784a91
authored
Feb 21, 2009
by
Moritz Kroll
Browse files
Make Visual Studio happy
[r25554]
parent
25d8d92b
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/ir/irio.c
View file @
da784a91
...
...
@@ -1304,6 +1304,7 @@ static void import_entity(io_env_t *env)
static
int
parse_typegraph
(
io_env_t
*
env
)
{
const
char
*
kind
;
keyword_t
kwkind
;
lex_state_t
oldstate
;
EXPECT
(
'{'
);
...
...
@@ -1318,7 +1319,7 @@ static int parse_typegraph(io_env_t *env)
kind
=
read_str
(
env
);
if
(
kind
[
0
]
==
'}'
&&
!
kind
[
1
])
break
;
keyword_t
kwkind
=
(
keyword_t
)
symbol
(
kind
,
tt_keyword
);
kwkind
=
(
keyword_t
)
symbol
(
kind
,
tt_keyword
);
switch
(
kwkind
)
{
case
kw_type
:
...
...
@@ -1497,6 +1498,7 @@ endloop:
static
int
parse_modes
(
io_env_t
*
env
)
{
const
char
*
kind
;
keyword_t
kwkind
;
EXPECT
(
'{'
);
...
...
@@ -1505,7 +1507,7 @@ static int parse_modes(io_env_t *env)
kind
=
read_str
(
env
);
if
(
kind
[
0
]
==
'}'
&&
!
kind
[
1
])
break
;
keyword_t
kwkind
=
(
keyword_t
)
symbol
(
kind
,
tt_keyword
);
kwkind
=
(
keyword_t
)
symbol
(
kind
,
tt_keyword
);
switch
(
kwkind
)
{
case
kw_mode
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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