2015-07-30 06:32:47 +08:00
|
|
|
//===-- ARMMachineFunctionInfo.cpp - ARM machine function info ------------===//
|
2011-12-20 10:50:00 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "ARMMachineFunctionInfo.h"
|
2017-01-27 07:40:06 +08:00
|
|
|
#include "ARMSubtarget.h"
|
2011-12-20 10:50:00 +08:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2016-10-12 01:38:25 +08:00
|
|
|
void ARMFunctionInfo::anchor() {}
|
2014-06-19 06:48:09 +08:00
|
|
|
|
|
|
|
ARMFunctionInfo::ARMFunctionInfo(MachineFunction &MF)
|
2015-02-20 16:24:37 +08:00
|
|
|
: isThumb(MF.getSubtarget<ARMSubtarget>().isThumb()),
|
2017-01-27 07:40:06 +08:00
|
|
|
hasThumb2(MF.getSubtarget<ARMSubtarget>().hasThumb2()) {}
|