aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/asm-1.c
blob: fe275701391a4549434609a0b52bc98e1d33e754 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Make sure that gcc understands that an in/out operand is a use as well
   as a def.  */

/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-optimized-nouid" } */

void f()
{
  int i = 42;
  int j = 63;
  
  asm ("": "=m"(i), "+r"(j) : "m"(i));
}

/* { dg-final { scan-tree-dump-times "42" 1 "optimized" } } */
/* { dg-final { scan-tree-dump-times "63" 1 "optimized" } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */