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
ca11b3fb
Commit
ca11b3fb
authored
19 years ago
by
Ulrich Weigand
Committed by
Ulrich Weigand
19 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r98040
parent
c3c822d5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
3 deletions
+32
-3
gcc/ChangeLog
+6
-0
gcc/config/s390/s390.md
+3
-3
gcc/testsuite/ChangeLog
+5
-0
gcc/testsuite/gcc.dg/20050409-1.c
+18
-0
No files found.
gcc/ChangeLog
View file @
ca11b3fb
2005-04-12 Ulrich Weigand <uweigand@de.ibm.com>
PR middle-end/20917
* config/s390/s390.md ("*set_tp"): Use SET in pattern.
("set_tp_64", "set_tp_31"): Adapt expanded pattern.
2004-04-12 Richard Henderson <rth@redhat.com>
* config/i386/i386.md (UNSPEC_FIX, UNSPEC_MOVA, UNSPEC_SHUFFLE,
...
...
This diff is collapsed.
Click to expand it.
gcc/config/s390/s390.md
View file @
ca11b3fb
...
...
@@ -7784,18 +7784,18 @@
(define_expand "set_tp_64"
[
(set (reg:DI 36) (match_operand:DI 0 "nonimmediate_operand" ""))
(
unspec_volatile
[
(reg:DI 36)
]
UNSPECV_SET_TP
)]
(
set (reg:DI 36) (unspec_volatile:DI
[
(reg:DI 36)
]
UNSPECV_SET_TP)
)]
"TARGET_64BIT"
"")
(define_expand "set_tp_31"
[
(set (reg:SI 36) (match_operand:SI 0 "nonimmediate_operand" ""))
(
unspec_volatile
[
(reg:SI 36)
]
UNSPECV_SET_TP
)]
(
set (reg:SI 36) (unspec_volatile:SI
[
(reg:SI 36)
]
UNSPECV_SET_TP)
)]
"!TARGET_64BIT"
"")
(define_insn "
*
set_tp"
[
(
unspec_volatile [(reg 36)
]
UNSPECV_SET_TP
)]
[
(
set (reg 36) (unspec_volatile [(reg 36)
]
UNSPECV_SET_TP)
)]
""
""
[
(set_attr "type" "none")
...
...
This diff is collapsed.
Click to expand it.
gcc/testsuite/ChangeLog
View file @
ca11b3fb
2005
-
04
-
12
Ulrich
Weigand
<
uweigand
@de
.
ibm
.
com
>
PR
middle
-
end
/
20917
*
gcc
.
dg
/
20050409
-
1
.
c
:
New
test
.
2005
-
04
-
12
Andrew
Pinski
<
pinskia
@physics
.
uc
.
edu
>
*
gcc
.
dg
/
tree
-
ssa
/
alias
-
1
.
c
:
Fix
spelling
of
optimized
.
...
...
This diff is collapsed.
Click to expand it.
gcc/testsuite/gcc.dg/20050409-1.c
0 → 100644
View file @
ca11b3fb
/* This used to ICE due to a regmove problem on s390. */
/* { dg-do compile { target s390*-*-* } } */
/* { dg-options "-O2" } */
extern
void
abort
(
void
);
extern
void
**
alloc
(
void
);
void
*
test
(
void
)
{
void
**
p
=
alloc
();
if
(
!
p
)
abort
();
__builtin_set_thread_pointer
(
p
);
return
*
p
;
}
This diff is collapsed.
Click to expand it.
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