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
* gcc.dg/torture/stackalign/builtin-apply-2.c: Fix skip-if syntax.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr77860.c
blob
04346b16e779fc1cd7cd4d80e5a9f511a1b5207e
1
/* PR tree-optimization/77860 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -fno-tree-vrp -fno-tree-forwprop -Wno-psabi" } */
4
5
typedef
unsigned short
V
__attribute__
((
vector_size
(
16
)));
6
7
V
8
foo
(
V x
,
V y
)
9
{
10
V a
= -
x
;
11
V b
= -
y
;
12
return
a
*
b
;
13
}