mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-14 15:39:06 +00:00
1be0e271a0
solution but it is a small step towards removing the horror that is TargetAsmInfo. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135237 91177308-0d34-0410-b5e6-96231b3b80d8
24 lines
836 B
C++
24 lines
836 B
C++
//===-- llvm/Target/TargetAsmInfo.cpp - Target Assembly Info --------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/Target/TargetAsmInfo.h"
|
|
#include "llvm/Target/TargetData.h"
|
|
#include "llvm/Target/TargetLowering.h"
|
|
#include "llvm/Target/TargetLoweringObjectFile.h"
|
|
#include "llvm/Target/TargetMachine.h"
|
|
#include "llvm/Target/TargetRegisterInfo.h"
|
|
using namespace llvm;
|
|
|
|
TargetAsmInfo::TargetAsmInfo(const TargetMachine &TM) {
|
|
TLOF = &TM.getTargetLowering()->getObjFileLowering();
|
|
TFI = TM.getFrameLowering();
|
|
TRI = TM.getRegisterInfo();
|
|
TFI->getInitialFrameState(InitialFrameState);
|
|
}
|