2020-06-03 03:48:30 +08:00
|
|
|
//===--- mulsi3.S - Integer multiplication routines -----------------------===//
|
2018-03-01 15:47:27 +08:00
|
|
|
//
|
2019-01-19 18:56:40 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2018-03-01 15:47:27 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2020-06-03 03:48:30 +08:00
|
|
|
#if __riscv_xlen == 32
|
|
|
|
#define __mulxi3 __mulsi3
|
|
|
|
#include "int_mul_impl.inc"
|
2018-03-01 15:47:27 +08:00
|
|
|
#endif
|