svn merge -r102224:107263 svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-3_4-branch
[official-gcc.git] / gcc / testsuite / g++.dg / ext / asm3.C
blob699ab4c82525cd796f27649eaad460c6ee8b2d73
1 // { dg-do compile }
3 // Copyright (C) 2002 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 16 Sep 2002 <nathan@codesourcery.com>
6 // PR 7015. ICE with asms
8 int two(int in)
10   register int out;
11   __asm__ ("" : "r" (out) : "r" (in)); // { dg-error "output operand" "" }
12   return out;