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
1a456b49
Commit
1a456b49
authored
Aug 22, 2008
by
Nathan Sidwell
Committed by
Nathan Sidwell
Aug 22, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* c-ppoutput.c (init_pp_output): Initialize src_line to 1.
From-SVN: r139426
parent
f37e928c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
gcc/ChangeLog
+4
-0
gcc/c-ppoutput.c
+2
-4
No files found.
gcc/ChangeLog
View file @
1a456b49
2008
-
08
-
21
Nathan
Sidwell
<
nathan
@codesourcery
.
com
>
*
c
-
ppoutput
.
c
(
init_pp_output
)
:
Initialize
src_line
to
1
.
2008
-
08
-
21
Richard
Henderson
<
rth
@redhat
.
com
>
*
configure
.
ac
(
HAVE_GAS_CFI_PERSONALITY_DIRECTIVE
)
:
Remove
...
...
gcc/c-ppoutput.c
View file @
1a456b49
...
...
@@ -146,10 +146,8 @@ init_pp_output (FILE *out_stream)
cb
->
used_undef
=
cb_used_undef
;
}
/* Initialize the print structure. Setting print.src_line to -1 here is
a trick to guarantee that the first token of the file will cause
a linemarker to be output by maybe_print_line. */
print
.
src_line
=
-
1
;
/* Initialize the print structure. */
print
.
src_line
=
1
;
print
.
printed
=
0
;
print
.
prev
=
0
;
print
.
outf
=
out_stream
;
...
...
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