diff options
Diffstat (limited to 'contrib/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.h')
-rw-r--r-- | contrib/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/contrib/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.h b/contrib/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.h new file mode 100644 index 000000000000..e02ff59fdac3 --- /dev/null +++ b/contrib/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.h @@ -0,0 +1,22 @@ +//===-- SparcTargetInfo.h - Sparc Target Implementation ---------*- C++ -*-===// +// +// 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 +// +//===----------------------------------------------------------------------===// + +#ifndef LLVM_LIB_TARGET_SPARC_TARGETINFO_SPARCTARGETINFO_H +#define LLVM_LIB_TARGET_SPARC_TARGETINFO_SPARCTARGETINFO_H + +namespace llvm { + +class Target; + +Target &getTheSparcTarget(); +Target &getTheSparcV9Target(); +Target &getTheSparcelTarget(); + +} // namespace llvm + +#endif // LLVM_LIB_TARGET_SPARC_TARGETINFO_SPARCTARGETINFO_H |