diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2019-08-20 20:50:12 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2019-08-20 20:50:12 +0000 |
| commit | e6d1592492a3a379186bfb02bd0f4eda0669c0d5 (patch) | |
| tree | 599ab169a01f1c86eda9adc774edaedde2f2db5b /lib/Target/ARM/TargetInfo | |
| parent | 1a56a5ead7a2e84bee8240f5f6b033b5f1707154 (diff) | |
Notes
Diffstat (limited to 'lib/Target/ARM/TargetInfo')
| -rw-r--r-- | lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp | 9 | ||||
| -rw-r--r-- | lib/Target/ARM/TargetInfo/ARMTargetInfo.h | 23 |
2 files changed, 27 insertions, 5 deletions
diff --git a/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp b/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp index b0491a4108a6..86cb907abfa3 100644 --- a/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp +++ b/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp @@ -1,13 +1,12 @@ //===-- ARMTargetInfo.cpp - ARM Target Implementation ---------------------===// // -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. +// 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 // //===----------------------------------------------------------------------===// -#include "MCTargetDesc/ARMMCTargetDesc.h" +#include "TargetInfo/ARMTargetInfo.h" #include "llvm/Support/TargetRegistry.h" using namespace llvm; diff --git a/lib/Target/ARM/TargetInfo/ARMTargetInfo.h b/lib/Target/ARM/TargetInfo/ARMTargetInfo.h new file mode 100644 index 000000000000..c217dd5c4612 --- /dev/null +++ b/lib/Target/ARM/TargetInfo/ARMTargetInfo.h @@ -0,0 +1,23 @@ +//===-- ARMTargetInfo.h - ARM 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_ARM_TARGETINFO_ARMTARGETINFO_H +#define LLVM_LIB_TARGET_ARM_TARGETINFO_ARMTARGETINFO_H + +namespace llvm { + +class Target; + +Target &getTheARMLETarget(); +Target &getTheARMBETarget(); +Target &getTheThumbLETarget(); +Target &getTheThumbBETarget(); + +} // namespace llvm + +#endif // LLVM_LIB_TARGET_ARM_TARGETINFO_ARMTARGETINFO_H |
