forked from OSchip/llvm-project
6 lines
118 B
C
6 lines
118 B
C
|
// RUN: clang %s -arch=i386 -verify -fsyntax-only
|
||
|
void f(int len)
|
||
|
{
|
||
|
__asm__ volatile("" :"=&r"(len), "+&r"(len));
|
||
|
}
|