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
b1f278c4
Commit
b1f278c4
authored
Apr 19, 2009
by
Michael Beck
Browse files
- updated for newer type attribute names
[r25828]
parent
a947c209
Changes
1
Show whitespace changes
Inline
Side-by-side
win32/firmEvaluator/firm.c
View file @
b1f278c4
...
...
@@ -545,7 +545,7 @@ static HRESULT format_node(DEBUGHELPER *pHelper, int nBase, const void *addr, ch
break
;
case
iro_Cast
:
_tcsncat
(
pResult
,
"<"
,
max
);
if
(
format_type
(
pHelper
,
nBase
,
n
.
attr
.
cast
.
to
type
,
name
,
sizeof
(
name
),
0
)
!=
S_OK
)
if
(
format_type
(
pHelper
,
nBase
,
n
.
attr
.
cast
.
type
,
name
,
sizeof
(
name
),
0
)
!=
S_OK
)
return
E_FAIL
;
_tcsncat
(
pResult
,
name
,
max
);
_tcsncat
(
pResult
,
">"
,
max
);
...
...
@@ -570,7 +570,7 @@ static HRESULT format_node(DEBUGHELPER *pHelper, int nBase, const void *addr, ch
break
;
case
iro_CopyB
:
_tcsncat
(
pResult
,
"<"
,
max
);
if
(
format_type
(
pHelper
,
nBase
,
n
.
attr
.
copyb
.
data_
type
,
name
,
sizeof
(
name
),
0
)
!=
S_OK
)
if
(
format_type
(
pHelper
,
nBase
,
n
.
attr
.
copyb
.
type
,
name
,
sizeof
(
name
),
0
)
!=
S_OK
)
return
E_FAIL
;
_tcsncat
(
pResult
,
name
,
max
);
_tcsncat
(
pResult
,
">"
,
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