Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
b29ee02b
Commit
b29ee02b
authored
Aug 28, 2007
by
Gabriel Dos Reis
Committed by
Gabriel Dos Reis
Aug 28, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* c-pretty-print.c (pp_c_constant): Handle COMPLEX_CST.
From-SVN: r127852
parent
c536a6a7
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
gcc/ChangeLog
+4
-0
gcc/c-pretty-print.c
+7
-0
No files found.
gcc/ChangeLog
View file @
b29ee02b
2007-08-28 Gabriel Dos Reis <gdr@integrable-solutions.net>
* c-pretty-print.c (pp_c_constant): Handle COMPLEX_CST.
2007-08-28 Richard Guenther <rguenther@suse.de>
2007-08-28 Richard Guenther <rguenther@suse.de>
* tree.h (DECL_DISREGARD_INLINE_LIMITS): New.
* tree.h (DECL_DISREGARD_INLINE_LIMITS): New.
...
...
gcc/c-pretty-print.c
View file @
b29ee02b
...
@@ -1012,6 +1012,13 @@ pp_c_constant (c_pretty_printer *pp, tree e)
...
@@ -1012,6 +1012,13 @@ pp_c_constant (c_pretty_printer *pp, tree e)
pp_c_string_literal
(
pp
,
e
);
pp_c_string_literal
(
pp
,
e
);
break
;
break
;
case
COMPLEX_CST
:
/* Sometimes, we are confused and we think a complex literal
is a constant. Such thing is a compound literal which
grammatically belongs to postifx-expr production. */
pp_c_compound_literal
(
pp
,
e
);
break
;
default
:
default
:
pp_unsupported_tree
(
pp
,
e
);
pp_unsupported_tree
(
pp
,
e
);
break
;
break
;
...
...
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