1*3cab2bb3Spatrick//===--- mulsi3.S - Integer multiplication routines -----------------------===// 2*3cab2bb3Spatrick// 3*3cab2bb3Spatrick// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*3cab2bb3Spatrick// See https://llvm.org/LICENSE.txt for license information. 5*3cab2bb3Spatrick// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*3cab2bb3Spatrick// 7*3cab2bb3Spatrick//===----------------------------------------------------------------------===// 8*3cab2bb3Spatrick 9*3cab2bb3Spatrick#if __riscv_xlen == 32 10*3cab2bb3Spatrick#define __mulxi3 __mulsi3 11*3cab2bb3Spatrick#include "int_mul_impl.inc" 12*3cab2bb3Spatrick#endif 13