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
a7d53fce
Commit
a7d53fce
authored
Jul 10, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(default_conversion): Use STRIP_TYPE_NOPS.
(build_binary_op, build_function_call): Likewise. From-SVN: r1548
parent
0fafb45e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
5 deletions
+11
-5
gcc/c-typeck.c
+11
-5
No files found.
gcc/c-typeck.c
View file @
a7d53fce
...
...
@@ -889,8 +889,14 @@ default_conversion (exp)
type
=
TREE_TYPE
(
exp
);
}
/* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
STRIP_NOPS
(
exp
);
/* Strip NON_LVALUE_EXPRs and no-op conversions, since we aren't using as
an lvalue. */
/* Do not use STRIP_NOPS here! It will remove conversions from pointer
to integer and cause infinite recursion. */
while
(
TREE_CODE
(
exp
)
==
NON_LVALUE_EXPR
||
(
TREE_CODE
(
exp
)
==
NOP_EXPR
&&
TREE_TYPE
(
TREE_OPERAND
(
exp
,
0
))
==
TREE_TYPE
(
exp
)))
exp
=
TREE_OPERAND
(
exp
,
0
);
/* Normally convert enums to int,
but convert wide enums to something wider. */
...
...
@@ -1774,7 +1780,7 @@ build_function_call (function, params)
tree
name
=
NULL_TREE
;
/* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
STRIP_NOPS
(
function
);
STRIP_
TYPE_
NOPS
(
function
);
/* Convert anything with function type to a pointer-to-function. */
if
(
TREE_CODE
(
function
)
==
FUNCTION_DECL
)
...
...
@@ -2226,8 +2232,8 @@ build_binary_op (code, orig_op0, orig_op1, convert_p)
code1
=
TREE_CODE
(
type1
);
/* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
STRIP_NOPS
(
op0
);
STRIP_NOPS
(
op1
);
STRIP_
TYPE_
NOPS
(
op0
);
STRIP_
TYPE_
NOPS
(
op1
);
/* If an error was already reported for one of the arguments,
avoid reporting another error. */
...
...
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