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
dae1dd2e
Commit
dae1dd2e
authored
Jul 09, 2004
by
Zack Weinberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* vec.c, vec.h (vec_assert_fail): Use unsigned int for LINE argument.
From-SVN: r84398
parent
a578b091
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/ChangeLog
+5
-1
gcc/vec.c
+1
-1
gcc/vec.h
+1
-1
No files found.
gcc/ChangeLog
View file @
dae1dd2e
2004-07-09 Zack Weinberg <zack@codesourcery.com>
* vec.c, vec.h (vec_assert_fail): Use unsigned int for LINE argument.
2004-07-09 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
PR target/16459
...
...
@@ -61,7 +65,7 @@
2004-07-09 Richard Earnshaw <rearnsha@arm.com>
PR target/12133
* arm.c (arm_legitimate_index_p) Allow DFmode for soft-float
* arm.c (arm_legitimate_index_p) Allow DFmode for soft-float
and DImode to use +/-4k offset.
2004-07-09 Richard Henderson <rth@redhat.com>
...
...
gcc/vec.c
View file @
dae1dd2e
...
...
@@ -82,7 +82,7 @@ vec_o_reserve (void *vec, int reserve, size_t vec_offset, size_t elt_size
void
vec_assert_fail
(
const
char
*
op
,
const
char
*
struct_name
,
const
char
*
file
,
size_
t
line
,
const
char
*
function
)
const
char
*
file
,
unsigned
in
t
line
,
const
char
*
function
)
{
internal_error
(
"vector %s %s domain error, in %s at %s:%u"
,
struct_name
,
op
,
function
,
trim_filename
(
file
),
line
);
...
...
gcc/vec.h
View file @
dae1dd2e
...
...
@@ -251,7 +251,7 @@ extern void *vec_o_reserve (void *, int, size_t, size_t MEM_STAT_DECL);
#if ENABLE_CHECKING
extern
void
vec_assert_fail
(
const
char
*
,
const
char
*
,
const
char
*
,
size_
t
,
const
char
*
)
const
char
*
,
unsigned
in
t
,
const
char
*
)
ATTRIBUTE_NORETURN
;
#define VEC_ASSERT_FAIL(OP,VEC) \
vec_assert_fail (OP,#VEC,__FILE__,__LINE__,__FUNCTION__)
...
...
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