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
* doc/extend.texi (Loop-Specific Pragmas): Document pragma GCC unroll.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ext
/
pr80363.C
blob
2ff7bca80b65f82a20414f0e078a8b17516c120c
1
// PR c++/80363
2
// { dg-do compile }
3
4
typedef int V __attribute__((vector_size (16)));
5
6
int
7
foo (V *a, V *b)
8
{
9
if (*a < *b) // { dg-error "could not convert\[^#]*from" }
10
return 1;
11
return 0;
12
}