repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[AArch64] Fix SVE testsuite failures for ILP32 (PR 83846)
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
opt
/
pr47639.c
blob
6ee8bb7dee473ba0504e7ecf7d675f991e9461b7
1
// { dg-do compile }
2
// { dg-options "-fnon-call-exceptions" }
3
4
typedef
int
__attribute__
((
vector_size
(
8
)))
vec
;
5
6
vec
foo
(
vec v1
,
vec v2
)
7
{
8
try
9
{
10
return
v1
/
v2
;
11
}
12
catch
(...)
13
{
14
throw
;
15
}
16
}
17