1  /* { dg-do compile } */
       2  /* { dg-options "-mno-hw-mul" } */
       3  /* { dg-final { scan-assembler "__mulsi3" } } */
       4  
       5  int x, y, z;
       6  
       7  void test()
       8  {
       9    x = y * z;
      10  }
      11