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
732d9b8c
Commit
732d9b8c
authored
Aug 24, 1999
by
Mumit Khan
Committed by
Jeff Law
Aug 23, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* g++spec.c (lang_specific_driver): Add room for NULL in arglist.
From-SVN: r28812
parent
bbd0d54a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/cp/ChangeLog
+4
-0
gcc/cp/g++spec.c
+2
-1
No files found.
gcc/cp/ChangeLog
View file @
732d9b8c
Mon Aug 23 22:17:20 1999 Mumit Khan <khan@xraylith.wisc.edu>
* g++spec.c (lang_specific_driver): Add room for NULL in arglist.
1999-08-23 Jason Merrill <jason@yorick.cygnus.com>
* exception.cc (__cplus_type_matcher): Call __throw_type_match_rtti_2.
...
...
gcc/cp/g++spec.c
View file @
732d9b8c
...
...
@@ -197,7 +197,8 @@ lang_specific_driver (fn, in_argc, in_argv, in_added_libraries)
return
;
}
num_args
=
argc
+
added
+
need_math
;
/* Make sure to have room for the trailing NULL argument. */
num_args
=
argc
+
added
+
need_math
+
1
;
arglist
=
(
char
**
)
xmalloc
(
num_args
*
sizeof
(
char
*
));
/* NOTE: We start at 1 now, not 0. */
...
...
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