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
6aab184c
Commit
6aab184c
authored
Aug 10, 2007
by
Aldy Hernandez
Committed by
Aldy Hernandez
Aug 10, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree-flow-inline.h (get_filename): Remove.
From-SVN: r127339
parent
5955b0a3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
18 deletions
+4
-18
gcc/ChangeLog
+4
-0
gcc/tree-flow-inline.h
+0
-18
No files found.
gcc/ChangeLog
View file @
6aab184c
2007-08-10 Aldy Hernandez <aldyh@redhat.com>
* tree-flow-inline.h (get_filename): Remove.
2007-08-10 Richard Sandiford <richard@codesourcery.com>
* config/mips/mips-protos.h (mips_address_insns): Add a boolean
...
...
gcc/tree-flow-inline.h
View file @
6aab184c
...
...
@@ -327,24 +327,6 @@ get_lineno (tree expr)
return
EXPR_LINENO
(
expr
);
}
/* Return the file name for EXPR, or return "???" if we have no
filename information. */
static
inline
const
char
*
get_filename
(
tree
expr
)
{
const
char
*
filename
;
if
(
expr
==
NULL_TREE
)
return
"???"
;
if
(
TREE_CODE
(
expr
)
==
COMPOUND_EXPR
)
expr
=
TREE_OPERAND
(
expr
,
0
);
if
(
EXPR_HAS_LOCATION
(
expr
)
&&
(
filename
=
EXPR_FILENAME
(
expr
)))
return
filename
;
else
return
"???"
;
}
/* Return true if T is a noreturn call. */
static
inline
bool
noreturn_call_p
(
tree
t
)
...
...
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