annotate gcc/testsuite/gcc.dg/lto/20090206-1_0.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 84e7813d76e9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* { dg-lto-do link } */
kono
parents:
diff changeset
2 /* { dg-skip-if "" { ! { i?86-*-linux* i?86-*-gnu* x86_64-*-linux* } } } */
kono
parents:
diff changeset
3 /* { dg-lto-options {{-fPIC -r -nostdlib -flto -flto-partition=1to1 -msse2}} } */
kono
parents:
diff changeset
4 /* { dg-require-effective-target sse2 } */
kono
parents:
diff changeset
5 /* { dg-suppress-ld-options {-fPIC -msse2} } */
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
6 /* { dg-extra-ld-options "-flinker-output=nolto-rel" } */
111
kono
parents:
diff changeset
7
kono
parents:
diff changeset
8 typedef short v8hi __attribute__((__vector_size__(16)));
kono
parents:
diff changeset
9 void func (void) {
kono
parents:
diff changeset
10 v8hi x, y, z;
kono
parents:
diff changeset
11 z = __builtin_ia32_paddw128 (x, y);
kono
parents:
diff changeset
12 }