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
e7f160c4
Commit
e7f160c4
authored
Feb 24, 2011
by
Ian Lance Taylor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set type of array length expressions.
From-SVN: r170460
parent
67e18edb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
24 deletions
+16
-24
gcc/go/gofrontend/types.cc
+16
-24
No files found.
gcc/go/gofrontend/types.cc
View file @
e7f160c4
...
...
@@ -4287,6 +4287,10 @@ Array_type::verify_length()
{
if
(
this
->
length_
==
NULL
)
return
true
;
Type_context
context
(
Type
::
lookup_integer_type
(
"int"
),
false
);
this
->
length_
->
determine_type
(
&
context
);
if
(
!
this
->
length_
->
is_constant
())
{
error_at
(
this
->
length_
->
location
(),
"array bound is not constant"
);
...
...
@@ -4294,30 +4298,23 @@ Array_type::verify_length()
}
mpz_t
val
;
Type
*
t
=
this
->
length_
->
type
()
;
if
(
t
->
integer_type
()
!=
NULL
)
mpz_init
(
val
);
Type
*
vt
;
if
(
!
this
->
length_
->
integer_constant_value
(
true
,
val
,
&
vt
)
)
{
Type
*
vt
;
mpz_init
(
val
);
if
(
!
this
->
length_
->
integer_constant_value
(
true
,
val
,
&
vt
))
{
error_at
(
this
->
length_
->
location
(),
"array bound is not constant"
);
mpz_clear
(
val
);
return
false
;
}
}
else
if
(
t
->
float_type
()
!=
NULL
)
{
Type
*
vt
;
mpfr_t
fval
;
mpfr_init
(
fval
);
if
(
!
this
->
length_
->
float_constant_value
(
fval
,
&
vt
))
{
error_at
(
this
->
length_
->
location
(),
"array bound is not constant"
);
if
(
this
->
length_
->
type
()
->
integer_type
()
!=
NULL
||
this
->
length_
->
type
()
->
float_type
()
!=
NULL
)
error_at
(
this
->
length_
->
location
(),
"array bound is not constant"
);
else
error_at
(
this
->
length_
->
location
(),
"array bound is not numeric"
);
mpfr_clear
(
fval
);
mpz_clear
(
val
);
return
false
;
}
if
(
!
mpfr_integer_p
(
fval
))
...
...
@@ -4325,18 +4322,13 @@ Array_type::verify_length()
error_at
(
this
->
length_
->
location
(),
"array bound truncated to integer"
);
mpfr_clear
(
fval
);
mpz_clear
(
val
);
return
false
;
}
mpz_init
(
val
);
mpfr_get_z
(
val
,
fval
,
GMP_RNDN
);
mpfr_clear
(
fval
);
}
else
{
if
(
!
t
->
is_error_type
())
error_at
(
this
->
length_
->
location
(),
"array bound is not numeric"
);
return
false
;
}
if
(
mpz_sgn
(
val
)
<
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