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
d8d64559
Commit
d8d64559
authored
27 years ago
by
Michael Meissner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cast alloca return value for char *
From-SVN: r15837
parent
c44e099f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
gcc/ChangeLog
+7
-2
gcc/flow.c
+1
-1
No files found.
gcc/ChangeLog
View file @
d8d64559
Fri Oct 3 15:49:27 1997 Michael Meissner <meissner@cygnus.com>
* flow.c (print_rtl_with_bb): Cast alloca return value for
in_bb_p.
Thu Oct 2 21:15:03 1997 Richard Henderson <rth@cygnus.com>
* i386.h (RETURN_ADDR_RTX): New definition that works for
...
...
@@ -13,9 +18,9 @@ Wed Oct 1 13:43:53 1997 Jim Wilson <wilson@cygnus.com>
Wed Oct 1 11:13:25 1997 Ian Lance Taylor <ian@cygnus.com>
* pexecute.c: Use spawn if __CYGWIN32__.
* pexecute.c: Use spawn if __CYGWIN32__.
* pexecute.c: Include "config.h" first, as per autoconf manual
* pexecute.c: Include "config.h" first, as per autoconf manual
(from Paul Eggert <eggert@twinsun.com>).
Wed Oct 1 01:44:36 1997 Philippe De Muyter <phdm@info.ucl.ac.be>
...
...
This diff is collapsed.
Click to expand it.
gcc/flow.c
View file @
d8d64559
...
...
@@ -2878,7 +2878,7 @@ print_rtl_with_bb (outf, rtx_first)
int
max_uid
=
get_max_uid
();
int
*
start
=
(
int
*
)
alloca
(
max_uid
*
sizeof
(
int
));
int
*
end
=
(
int
*
)
alloca
(
max_uid
*
sizeof
(
int
));
char
*
in_bb_p
=
alloca
(
max_uid
*
sizeof
(
enum
bb_state
));
char
*
in_bb_p
=
(
char
*
)
alloca
(
max_uid
*
sizeof
(
enum
bb_state
));
for
(
i
=
0
;
i
<
max_uid
;
i
++
)
{
...
...
This diff is collapsed.
Click to expand it.
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