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
15a15e8d
Commit
15a15e8d
authored
Sep 10, 2009
by
Richard Henderson
Committed by
Richard Henderson
Sep 10, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* c-common.h (c_dialect_cxx, c_dialect_objc): Boolify.
From-SVN: r151601
parent
f90f4827
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/c-common.h
+2
-2
No files found.
gcc/ChangeLog
View file @
15a15e8d
2009-09-10 Richard Henderson <rth@redhat.com>
* c-common.h (c_dialect_cxx, c_dialect_objc): Boolify.
2009-09-10 Hariharan Sandanagobalane <hariharan@picochip.com>
* final.c (shorten_branches) : Ignore DEBUG_INSN_P instructions
...
...
gcc/c-common.h
View file @
15a15e8d
...
...
@@ -360,8 +360,8 @@ c_language_kind;
front end. For "ObjC features" or "not C++" use the macros. */
extern
c_language_kind
c_language
;
#define c_dialect_cxx() (
c_language & clk_cxx
)
#define c_dialect_objc() (
c_language & clk_objc
)
#define c_dialect_cxx() (
(c_language & clk_cxx) != 0
)
#define c_dialect_objc() (
(c_language & clk_objc) != 0
)
/* Information about a statement tree. */
...
...
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