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
542ed971
Commit
542ed971
authored
Mar 14, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(bc_expand_{binary,unary}_operation): Add missing args to call to
expand_expr. From-SVN: r6782
parent
1d556704
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
gcc/bc-optab.c
+4
-4
No files found.
gcc/bc-optab.c
View file @
542ed971
/* Bytecode conversion definitions for GNU C-compiler.
/* Bytecode conversion definitions for GNU C-compiler.
Copyright (C) 1993 Free Software Foundation, Inc.
Copyright (C) 1993
, 1994
Free Software Foundation, Inc.
This file is part of GNU CC.
This file is part of GNU CC.
...
@@ -724,9 +724,9 @@ bc_expand_binary_operation (optab, resulttype, arg0, arg1)
...
@@ -724,9 +724,9 @@ bc_expand_binary_operation (optab, resulttype, arg0, arg1)
if
(
besti
==
-
1
)
if
(
besti
==
-
1
)
abort
();
abort
();
expand_expr
(
arg1
);
expand_expr
(
arg1
,
0
,
VOIDmode
,
0
);
emit_typecode_conversion
(
arg1code
,
optab
[
besti
].
arg1
);
emit_typecode_conversion
(
arg1code
,
optab
[
besti
].
arg1
);
expand_expr
(
arg0
);
expand_expr
(
arg0
,
0
,
VOIDmode
,
0
);
emit_typecode_conversion
(
arg0code
,
optab
[
besti
].
arg0
);
emit_typecode_conversion
(
arg0code
,
optab
[
besti
].
arg0
);
bc_emit_instruction
(
optab
[
besti
].
opcode
);
bc_emit_instruction
(
optab
[
besti
].
opcode
);
emit_typecode_conversion
(
optab
[
besti
].
result
,
resultcode
);
emit_typecode_conversion
(
optab
[
besti
].
result
,
resultcode
);
...
@@ -761,7 +761,7 @@ bc_expand_unary_operation (optab, resulttype, arg0)
...
@@ -761,7 +761,7 @@ bc_expand_unary_operation (optab, resulttype, arg0)
if
(
besti
==
-
1
)
if
(
besti
==
-
1
)
abort
();
abort
();
expand_expr
(
arg0
);
expand_expr
(
arg0
,
0
,
VOIDmode
,
0
);
emit_typecode_conversion
(
arg0code
,
optab
[
besti
].
arg0
);
emit_typecode_conversion
(
arg0code
,
optab
[
besti
].
arg0
);
bc_emit_instruction
(
optab
[
besti
].
opcode
);
bc_emit_instruction
(
optab
[
besti
].
opcode
);
emit_typecode_conversion
(
optab
[
besti
].
result
,
resultcode
);
emit_typecode_conversion
(
optab
[
besti
].
result
,
resultcode
);
...
...
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