fixes for host gcc 4.6.1
[zpugcc/jano.git] / toolchain / gcc / newlib / libc / machine / sparc / scan.c
blobd76c0b95f0c4e8c9748a5052c936a3df80daa902
1 /* Cover function to sparclet `scan' instruction.
3 This file is in the public domain. */
5 #ifdef __sparclet__
7 int
8 scan (int a, int b)
10 int res;
11 __asm__ ("scan %1,%2,%0" : "=r" (res) : "r" (a), "r" (b));
12 return res;
15 #endif