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
1d79197a
Commit
1d79197a
authored
Aug 02, 1997
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(indent): Move to file level; was static in print_rtx.
(print_inline_rtx): New function. From-SVN: r14633
parent
a0c94d6d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
3 deletions
+18
-3
gcc/print-rtl.c
+18
-3
No files found.
gcc/print-rtl.c
View file @
1d79197a
/* Print RTL for GNU C Compiler.
Copyright (C) 1987, 1988, 1992 Free Software Foundation, Inc.
Copyright (C) 1987, 1988, 1992
, 1997
Free Software Foundation, Inc.
This file is part of GNU CC.
...
...
@@ -47,6 +47,8 @@ char spaces[] = "
static
int
sawclose
=
0
;
static
int
indent
;
/* Names for patterns. Non-zero only when linked with insn-output.c. */
extern
char
**
insn_name_ptr
;
...
...
@@ -57,7 +59,6 @@ static void
print_rtx
(
in_rtx
)
register
rtx
in_rtx
;
{
static
int
indent
;
register
int
i
,
j
;
register
char
*
format_ptr
;
register
int
is_insn
;
...
...
@@ -223,6 +224,20 @@ print_rtx (in_rtx)
sawclose
=
1
;
}
/* Print an rtx on the current line of FILE. Initially indent IND
characters. */
void
print_inline_rtx
(
outf
,
x
,
ind
)
FILE
*
outf
;
rtx
x
;
{
sawclose
=
0
;
indent
=
ind
;
outfile
=
outf
;
print_rtx
(
x
);
}
/* Call this function from the debugger to see what X looks like. */
void
...
...
@@ -274,7 +289,7 @@ debug_rtx_list (x, n)
The found insn is returned to enable further debugging analysis. */
rtx
debug_rtx_find
(
x
,
uid
)
debug_rtx_find
(
x
,
uid
)
rtx
x
;
int
uid
;
{
...
...
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