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
ce889f00
Commit
ce889f00
authored
Jul 16, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(build_binary_op): Improve shift warning messages.
From-SVN: r1595
parent
74bd77a8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
gcc/c-typeck.c
+3
-3
No files found.
gcc/c-typeck.c
View file @
ce889f00
...
@@ -2356,7 +2356,7 @@ build_binary_op (code, orig_op0, orig_op1, convert_p)
...
@@ -2356,7 +2356,7 @@ build_binary_op (code, orig_op0, orig_op1, convert_p)
else
if
(
TREE_INT_CST_LOW
(
op1
)
<
0
)
else
if
(
TREE_INT_CST_LOW
(
op1
)
<
0
)
warning
(
"shift count is negative"
);
warning
(
"shift count is negative"
);
if
(
TREE_INT_CST_LOW
(
op1
)
>=
TYPE_PRECISION
(
type0
))
if
(
TREE_INT_CST_LOW
(
op1
)
>=
TYPE_PRECISION
(
type0
))
warning
(
"shift count
exceeds width of value shifted
"
);
warning
(
"shift count
>= width of type
"
);
}
}
/* Use the type of the value to be shifted.
/* Use the type of the value to be shifted.
This is what most traditional C compilers do. */
This is what most traditional C compilers do. */
...
@@ -2381,7 +2381,7 @@ build_binary_op (code, orig_op0, orig_op1, convert_p)
...
@@ -2381,7 +2381,7 @@ build_binary_op (code, orig_op0, orig_op1, convert_p)
warning
(
"shift count is negative"
);
warning
(
"shift count is negative"
);
if
(
TREE_CODE
(
op1
)
==
INTEGER_CST
if
(
TREE_CODE
(
op1
)
==
INTEGER_CST
&&
TREE_INT_CST_LOW
(
op1
)
>=
TYPE_PRECISION
(
type0
))
&&
TREE_INT_CST_LOW
(
op1
)
>=
TYPE_PRECISION
(
type0
))
warning
(
"shift count
exceeds width of value shifted
"
);
warning
(
"shift count
>= width of type
"
);
/* Use the type of the value to be shifted.
/* Use the type of the value to be shifted.
This is what most traditional C compilers do. */
This is what most traditional C compilers do. */
result_type
=
type0
;
result_type
=
type0
;
...
@@ -2406,7 +2406,7 @@ build_binary_op (code, orig_op0, orig_op1, convert_p)
...
@@ -2406,7 +2406,7 @@ build_binary_op (code, orig_op0, orig_op1, convert_p)
warning
(
"shift count is negative"
);
warning
(
"shift count is negative"
);
if
(
TREE_CODE
(
op1
)
==
INTEGER_CST
if
(
TREE_CODE
(
op1
)
==
INTEGER_CST
&&
TREE_INT_CST_LOW
(
op1
)
>=
TYPE_PRECISION
(
type0
))
&&
TREE_INT_CST_LOW
(
op1
)
>=
TYPE_PRECISION
(
type0
))
warning
(
"shift count >= width of
value shifted
"
);
warning
(
"shift count >= width of
type
"
);
/* Use the type of the value to be shifted.
/* Use the type of the value to be shifted.
This is what most traditional C compilers do. */
This is what most traditional C compilers do. */
result_type
=
type0
;
result_type
=
type0
;
...
...
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