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
e7f6e33b
Commit
e7f6e33b
authored
Jan 25, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(print_operand, print_operand_address): Change error message text.
From-SVN: r8810
parent
01554f00
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
gcc/config/mips/mips.c
+4
-4
No files found.
gcc/config/mips/mips.c
View file @
e7f6e33b
...
...
@@ -3606,7 +3606,7 @@ print_operand (file, op, letter)
case
LEU
:
fputs
(
"leu"
,
file
);
break
;
default
:
abort_with_insn
(
op
,
"PRINT_OPERAND, i
llegal
insn for %%C"
);
abort_with_insn
(
op
,
"PRINT_OPERAND, i
nvalid
insn for %%C"
);
}
else
if
(
letter
==
'N'
)
...
...
@@ -3624,7 +3624,7 @@ print_operand (file, op, letter)
case
LEU
:
fputs
(
"gtu"
,
file
);
break
;
default
:
abort_with_insn
(
op
,
"PRINT_OPERAND, i
llegal
insn for %%N"
);
abort_with_insn
(
op
,
"PRINT_OPERAND, i
nvalid
insn for %%N"
);
}
else
if
(
letter
==
'S'
)
...
...
@@ -3704,7 +3704,7 @@ print_operand_address (file, addr)
switch
(
GET_CODE
(
addr
))
{
default:
abort_with_insn
(
addr
,
"PRINT_OPERAND_ADDRESS, i
llegal
insn #1"
);
abort_with_insn
(
addr
,
"PRINT_OPERAND_ADDRESS, i
nvalid
insn #1"
);
break
;
case
REG
:
...
...
@@ -3742,7 +3742,7 @@ print_operand_address (file, addr)
abort_with_insn
(
addr
,
"PRINT_OPERAND_ADDRESS, no regs"
);
if
(
!
CONSTANT_P
(
offset
))
abort_with_insn
(
addr
,
"PRINT_OPERAND_ADDRESS, i
llegal
insn #2"
);
abort_with_insn
(
addr
,
"PRINT_OPERAND_ADDRESS, i
nvalid
insn #2"
);
if
(
REGNO
(
reg
)
==
ARG_POINTER_REGNUM
)
abort_with_insn
(
addr
,
"Arg pointer not eliminated."
);
...
...
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