radeon-llvm: Start multithreaded before using llvm.
[mesa.git] / src / gallium / drivers / radeon / TargetInfo / AMDILTargetInfo.cpp
1 //===-- TargetInfo/AMDILTargetInfo.cpp - TODO: Add brief description -------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // TODO: Add full description
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "AMDIL.h"
15 #include "llvm/Support/TargetRegistry.h"
16
17 using namespace llvm;
18
19 /// The target for the AMDGPU backend
20 Target llvm::TheAMDGPUTarget;
21
22 /// Extern function to initialize the targets for the AMDIL backend
23 extern "C" void LLVMInitializeAMDGPUTargetInfo() {
24 RegisterTarget<Triple::r600, false>
25 R600(TheAMDGPUTarget, "r600", "AMD GPUs HD2XXX-HD6XXX");
26 }