2015-12-30 06:46:15 -05:00
|
|
|
//===-- ARMMachineFunctionInfo.cpp - ARM machine function info ------------===//
|
2012-04-14 09:54:10 -04: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-04-16 12:01:22 -04:00
|
|
|
#include "ARMSubtarget.h"
|
2012-04-14 09:54:10 -04:00
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
2017-01-02 14:17:04 -05:00
|
|
|
void ARMFunctionInfo::anchor() {}
|
2014-11-24 04:08:18 -05:00
|
|
|
|
|
|
|
|
ARMFunctionInfo::ARMFunctionInfo(MachineFunction &MF)
|
2015-05-27 14:44:32 -04:00
|
|
|
: isThumb(MF.getSubtarget<ARMSubtarget>().isThumb()),
|
2017-04-16 12:01:22 -04:00
|
|
|
hasThumb2(MF.getSubtarget<ARMSubtarget>().hasThumb2()) {}
|