aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/arc/mno-mac-24.c
blob: b4839579b12556771dfcfb93ef5418e963a0fb39 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */
/* { dg-options "-mno-mac-24" } */
/* Would also like to assemble and check that we get the expected
   "Error: bad instruction" assembler messages, but at the moment our
   testharness can't do that.  */

int f (int i)
{
  __asm__("mult %1, %1, %1" : "=r"(i) : "r"(i));
  return i;
}