1 //===-- X86TargetInfo.cpp - X86 Target Implementation ---------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "TargetInfo/X86TargetInfo.h"
10 #include "llvm/Support/TargetRegistry.h"
13 Target
&llvm::getTheX86_32Target() {
14 static Target TheX86_32Target
;
15 return TheX86_32Target
;
17 Target
&llvm::getTheX86_64Target() {
18 static Target TheX86_64Target
;
19 return TheX86_64Target
;
22 extern "C" void LLVMInitializeX86TargetInfo() {
23 RegisterTarget
<Triple::x86
, /*HasJIT=*/true> X(
24 getTheX86_32Target(), "x86", "32-bit X86: Pentium-Pro and above", "X86");
26 RegisterTarget
<Triple::x86_64
, /*HasJIT=*/true> Y(
27 getTheX86_64Target(), "x86-64", "64-bit X86: EM64T and AMD64", "X86");