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
c83857f9
Commit
c83857f9
authored
Mar 15, 1999
by
Jason Merrill
Committed by
Jason Merrill
Mar 14, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* call.c (add_function_candidate): Fix uninitialized variable.
From-SVN: r25775
parent
2dfa9a87
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
+3
-1
gcc/cp/ChangeLog
+2
-0
gcc/cp/call.c
+1
-1
No files found.
gcc/cp/ChangeLog
View file @
c83857f9
1999-03-14 Jason Merrill <jason@yorick.cygnus.com>
* call.c (add_function_candidate): Fix uninitialized variable.
* Makefile.in (search.o): Add dependency on varray.h.
1999-03-13 Jason Merrill <jason@yorick.cygnus.com>
...
...
gcc/cp/call.c
View file @
c83857f9
...
...
@@ -1151,6 +1151,7 @@ add_function_candidate (candidates, fn, arglist, flags)
}
len
=
list_length
(
arglist
);
convs
=
make_scratch_vec
(
len
);
/* 13.3.2 - Viable functions [over.match.viable]
First, to be a viable function, a candidate function shall have enough
...
...
@@ -1188,7 +1189,6 @@ add_function_candidate (candidates, fn, arglist, flags)
parmnode
=
parmlist
;
argnode
=
arglist
;
convs
=
make_scratch_vec
(
len
);
for
(
i
=
0
;
i
<
len
;
++
i
)
{
...
...
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