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
5f013ee9
Commit
5f013ee9
authored
Feb 11, 2004
by
Hartmut Penner
Committed by
Hartmut Penner
Feb 11, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* g++.dg/simd-2.C: Set -maltivec for ppc64.
From-SVN: r77664
parent
12f9df4e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
2 deletions
+23
-2
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/g++.dg/eh/simd-2.C
+19
-2
No files found.
gcc/testsuite/ChangeLog
View file @
5f013ee9
...
...
@@ -4,6 +4,10 @@
2004-02-11 Hartmut Penner <hpenner@de.ibm.com>
* g++.dg/simd-2.C: Set -maltivec for ppc64.
2004-02-11 Hartmut Penner <hpenner@de.ibm.com>
* gcc.dg/ppc64-abi-3.c: New test.
2004-02-10 Paolo Bonzini <bonzini@gnu.org>
...
...
gcc/testsuite/g++.dg/eh/simd-2.C
View file @
5f013ee9
...
...
@@ -2,10 +2,21 @@
// Contributed by Aldy Hernandez (aldy@quesejoda.com).
// { dg-options "-O" }
// { dg-options "-O -w" { target i?86-*-* } }
// { dg-options "-O -maltivec" { target powerpc64-*-linux* } }
// { dg-do run }
// { dg-error "" "PR target/12916" { target sparc64-*-* sparcv9-*-* } 12 }
// { dg-error "" "PR target/12916" { target sparc-*-* } 14 }
// { dg-error "" "PR target/12916" { target sparc64-*-* sparcv9-*-* } 23 }
// { dg-error "" "PR target/12916" { target sparc-*-* } 25 }
#ifdef __powerpc64__
#include <signal.h>
extern
void
exit
(
int
);
void
sig_ill_handler
(
int
sig
)
{
exit
(
0
);
}
#endif
typedef
int
__attribute__
((
mode
(
V4SI
)))
vecint
;
vecint
vecfunc
(
vecint
beachbum
)
...
...
@@ -44,6 +55,12 @@ void f1 (void)
int
main
()
{
#ifdef __powerpc64__
/* Exit on systems without altivec. */
signal
(
SIGILL
,
sig_ill_handler
);
asm
volatile
(
".long 0x10000484"
);
signal
(
SIGILL
,
SIG_DFL
);
#endif
f1
();
return
0
;
}
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