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
4f88a538
Commit
4f88a538
authored
Dec 04, 1992
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(output_line_command): Use alloca for line_cmd_buf.
From-SVN: r2837
parent
fa7d8b92
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
+2
-1
gcc/cccp.c
+2
-1
No files found.
gcc/cccp.c
View file @
4f88a538
...
...
@@ -6784,7 +6784,7 @@ output_line_command (ip, op, conditional, file_change)
enum
file_change_code
file_change
;
{
int
len
;
char
line_cmd_buf
[
500
]
;
char
*
line_cmd_buf
;
if
(
no_line_commands
||
ip
->
fname
==
NULL
...
...
@@ -6816,6 +6816,7 @@ output_line_command (ip, op, conditional, file_change)
ip
->
bufp
++
;
}
line_cmd_buf
=
(
char
*
)
alloca
(
strlen
(
ip
->
nominal_fname
)
+
100
);
#ifdef OUTPUT_LINE_COMMANDS
sprintf
(
line_cmd_buf
,
"#line %d
\"
%s
\"
"
,
ip
->
lineno
,
ip
->
nominal_fname
);
#else
...
...
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