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
3248917b
Commit
3248917b
authored
Nov 30, 2001
by
Richard Kenner
Committed by
Richard Kenner
Nov 30, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* dwarf2asm.c (dw2_asm_output_encoded_addr_rtx): Handle const1_rtx.
From-SVN: r47482
parent
a7c5337d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
gcc/ChangeLog
+4
-0
gcc/dwarf2asm.c
+3
-2
No files found.
gcc/ChangeLog
View file @
3248917b
Fri
Nov
30
08
:
26
:
57
2001
Richard
Kenner
<
kenner
@vlsi1
.
ultra
.
nyu
.
edu
>
*
dwarf2asm
.
c
(
dw2_asm_output_encoded_addr_rtx
)
:
Handle
const1_rtx
.
2001
-
11
-
30
Daniel
Berlin
<
dan
@cgsoftware
.
com
>
2001
-
11
-
30
Daniel
Berlin
<
dan
@cgsoftware
.
com
>
*
genopinit
.
c
(
gen_insn
)
:
Handle
MODE_VECTOR_INT
and
*
genopinit
.
c
(
gen_insn
)
:
Handle
MODE_VECTOR_INT
and
...
...
gcc/dwarf2asm.c
View file @
3248917b
...
@@ -873,8 +873,9 @@ dw2_asm_output_encoded_addr_rtx VPARAMS ((int encoding,
...
@@ -873,8 +873,9 @@ dw2_asm_output_encoded_addr_rtx VPARAMS ((int encoding,
return
;
return
;
}
}
/* NULL is _always_ represented as a plain zero. */
/* NULL is _always_ represented as a plain zero, as is 1 for Ada's
if
(
addr
==
const0_rtx
)
"all others". */
if
(
addr
==
const0_rtx
||
addr
==
const1_rtx
)
assemble_integer
(
addr
,
size
,
BITS_PER_UNIT
,
1
);
assemble_integer
(
addr
,
size
,
BITS_PER_UNIT
,
1
);
else
else
{
{
...
...
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