1 //===-- ARMMachineFunctionInfo.cpp - ARM machine function info ------------===//
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 "ARMMachineFunctionInfo.h"
10 #include "ARMSubtarget.h"
14 void ARMFunctionInfo::anchor() {}
16 ARMFunctionInfo::ARMFunctionInfo(MachineFunction
&MF
)
17 : isThumb(MF
.getSubtarget
<ARMSubtarget
>().isThumb()),
18 hasThumb2(MF
.getSubtarget
<ARMSubtarget
>().hasThumb2()) {}