1*06c3fb27SDimitry Andric //===-- RISCVTargetInfo.h - RISC-V Target Implementation --------*- C++ -*-===// 20b57cec5SDimitry Andric // 30b57cec5SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 40b57cec5SDimitry Andric // See https://llvm.org/LICENSE.txt for license information. 50b57cec5SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 60b57cec5SDimitry Andric // 70b57cec5SDimitry Andric //===----------------------------------------------------------------------===// 80b57cec5SDimitry Andric 90b57cec5SDimitry Andric #ifndef LLVM_LIB_TARGET_RISCV_TARGETINFO_RISCVTARGETINFO_H 100b57cec5SDimitry Andric #define LLVM_LIB_TARGET_RISCV_TARGETINFO_RISCVTARGETINFO_H 110b57cec5SDimitry Andric 120b57cec5SDimitry Andric namespace llvm { 130b57cec5SDimitry Andric 140b57cec5SDimitry Andric class Target; 150b57cec5SDimitry Andric 160b57cec5SDimitry Andric Target &getTheRISCV32Target(); 170b57cec5SDimitry Andric Target &getTheRISCV64Target(); 180b57cec5SDimitry Andric 190b57cec5SDimitry Andric } // namespace llvm 200b57cec5SDimitry Andric 210b57cec5SDimitry Andric #endif // LLVM_LIB_TARGET_RISCV_TARGETINFO_RISCVTARGETINFO_H 22