OSDN Git Service

* g++.dg/cdce3.C: Skip on alpha*-dec-osf5*.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / asm-9.c
1 /* PR inline-asm/15740 */
2 /* { dg-do compile } */
3 /* { dg-options "-O" } */
4
5 void foo(void)
6 {
7   int a, b;
8   a = 1;
9   b = a + 1;
10   asm ("" : : "m" (a));
11 }