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
ed8d8803
Commit
ed8d8803
authored
Dec 19, 2003
by
Hartmut Penner
Committed by
Hartmut Penner
Dec 19, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.dg/altivec-varargs-1.c: Enable testcase on ppc linux.
From-SVN: r74823
parent
83953138
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
5 deletions
+25
-5
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.dg/altivec-varargs-1.c
+21
-5
No files found.
gcc/testsuite/ChangeLog
View file @
ed8d8803
2003-12-19 Hartmut Penner <hpenner@de.ibm.com>
* gcc.dg/altivec-varargs-1.c: Enable testcase on ppc linux.
2003-12-18 Andrew Pinski <pinskia@physics.uc.edu>
PR debug/12923
...
...
gcc/testsuite/gcc.dg/altivec-varargs-1.c
View file @
ed8d8803
/* { dg-do run { target powerpc*-*-darwin* powerpc*-*-*altivec* } } */
/* { dg-options "-maltivec" } */
/* This test requires altivec, which means it'll fail on Darwin running
on G3. FIXME. */
/* { dg-do run { target powerpc*-*-darwin* powerpc*-*-*altivec* powerpc*-*-linux*} } */
/* { dg-options "-maltivec -mabi=altivec -fno-inline" } */
#include <stdarg.h>
#include <signal.h>
#define vector __attribute__((mode(V4SI)))
...
...
@@ -54,7 +53,7 @@ void bar(vector unsigned int a, ...)
}
int
main
(
void
)
int
main
1
(
void
)
{
/* In this call, in the Darwin ABI, the first argument goes into v2
the second one into r9-r10 and memory,
...
...
@@ -72,3 +71,20 @@ int main(void)
(
vector
unsigned
int
){
30
,
31
,
32
,
33
});
return
0
;
}
void
sig_ill_handler
(
int
sig
)
{
exit
(
0
);
}
int
main
(
void
)
{
/* Exit on systems without altivec. */
signal
(
SIGILL
,
sig_ill_handler
);
/* Altivec instruction, 'vor %v0,%v0,%v0'. */
asm
volatile
(
".long 0x10000484"
);
signal
(
SIGILL
,
SIG_DFL
);
return
main1
();
}
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