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
4600cc14
Commit
4600cc14
authored
Jan 07, 2005
by
Richard Sandiford
Committed by
Richard Sandiford
Jan 07, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree.h (IS_EXPR_CODE_CLASS): Use a straight-forward range check.
From-SVN: r93044
parent
2a0958c5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/tree.h
+2
-2
No files found.
gcc/ChangeLog
View file @
4600cc14
2005-01-07 Richard SAndiford <rsandifo@redhat.com>
* tree.h (IS_EXPR_CODE_CLASS): Use a straight-forward range check.
2005-01-07 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/19283
...
...
gcc/tree.h
View file @
4600cc14
/* Front-end tree definitions for GNU compiler.
Copyright (C) 1989, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
2001, 2002, 2003, 2004 Free Software Foundation, Inc.
2001, 2002, 2003, 2004
, 2005
Free Software Foundation, Inc.
This file is part of GCC.
...
...
@@ -147,7 +147,7 @@ extern const enum tree_code_class tree_code_type[];
expression. */
#define IS_EXPR_CODE_CLASS(CLASS)\
((
(CLASS) - tcc_reference) <= (tcc_expression - tcc_reference)
)
((
CLASS) >= tcc_reference && (CLASS) <= tcc_expression
)
/* Returns nonzero iff NODE is an expression of some kind. */
...
...
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