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
4ae9b5f5
Commit
4ae9b5f5
authored
Jul 03, 1996
by
Mike Stump
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
formatting tweaks
From-SVN: r12393
parent
9c51dc9c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
gcc/alloca.c
+2
-2
gcc/pexecute.c
+7
-7
No files found.
gcc/alloca.c
View file @
4ae9b5f5
...
...
@@ -180,7 +180,7 @@ alloca (size)
#endif
/* Reclaim garbage, defined as all alloca'd storage that
was allocated from deeper in the stack than currently. */
was allocated from deeper in the stack than currently.
*/
{
register
header
*
hp
;
/* Traverses linked list. */
...
...
@@ -350,7 +350,7 @@ struct stk_trailer
#ifdef CRAY2
/* Determine a "stack measure" for an arbitrary ADDRESS.
I doubt that "lint" will like this much. */
I doubt that "lint" will like this much.
*/
static
long
i00afunc
(
long
*
address
)
...
...
gcc/pexecute.c
View file @
4ae9b5f5
...
...
@@ -357,7 +357,7 @@ pexecute (program, argv, this_pname, temp_base, errmsg_fmt, errmsg_arg, flags)
for
(
i
=
1
;
argv
[
i
];
i
++
)
{
fputc
(
'\''
,
stdout
);
/* See if we have an argument that needs fixing. */
/* See if we have an argument that needs fixing.
*/
if
(
strchr
(
argv
[
i
],
'/'
))
{
tmpname
=
xmalloc
(
256
);
...
...
@@ -366,7 +366,7 @@ pexecute (program, argv, this_pname, temp_base, errmsg_fmt, errmsg_arg, flags)
}
for
(
cp
=
argv
[
i
];
*
cp
;
cp
++
)
{
/* Write an Option-d escape char in front of special chars. */
/* Write an Option-d escape char in front of special chars.
*/
if
(
strchr
(
"'+"
,
*
cp
))
fputc
(
'\266'
,
stdout
);
fputc
(
*
cp
,
stdout
);
...
...
@@ -382,7 +382,7 @@ pexecute (program, argv, this_pname, temp_base, errmsg_fmt, errmsg_arg, flags)
for
(
i
=
1
;
argv
[
i
];
i
++
)
{
/* See if we have an argument that needs fixing. */
/* See if we have an argument that needs fixing.
*/
if
(
strchr
(
argv
[
i
],
'/'
))
{
tmpname
=
xmalloc
(
256
);
...
...
@@ -393,7 +393,7 @@ pexecute (program, argv, this_pname, temp_base, errmsg_fmt, errmsg_arg, flags)
fputc
(
'\''
,
stdout
);
for
(
cp
=
argv
[
i
];
*
cp
;
cp
++
)
{
/* Write an Option-d escape char in front of special chars. */
/* Write an Option-d escape char in front of special chars.
*/
if
(
strchr
(
"'+"
,
*
cp
))
fputc
(
'\266'
,
stdout
);
fputc
(
*
cp
,
stdout
);
...
...
@@ -408,14 +408,14 @@ pexecute (program, argv, this_pname, temp_base, errmsg_fmt, errmsg_arg, flags)
/* Output commands that arrange to clean up and exit if a failure occurs.
We have to be careful to collect the status from the program that was
run, rather than some other script command. Also, we don't exit
immediately, since necessary cleanups are at the end of the script. */
immediately, since necessary cleanups are at the end of the script.
*/
fputs
(
"
\t
Set TmpStatus {Status}
\n
"
,
stdout
);
fputs
(
"
\t
If {TmpStatus} != 0
\n
"
,
stdout
);
fputs
(
"
\t\t
Set Failed {TmpStatus}
\n
"
,
stdout
);
fputs
(
"
\t
End
\n
"
,
stdout
);
fputs
(
"End
\n
"
,
stdout
);
/* We're just composing a script, can't fail here. */
/* We're just composing a script, can't fail here.
*/
return
0
;
}
...
...
@@ -430,7 +430,7 @@ pwait (pid, status, flags)
}
/* Write out commands that will exit with the correct error code
if something in the script failed. */
if something in the script failed.
*/
void
pfinish
()
...
...
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