mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-22 19:38:40 +00:00
add isThumb (unused as yet)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36370 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3bb6283eea
commit
24fb52da3c
@ -13,6 +13,8 @@
|
|||||||
|
|
||||||
#include "ARMTargetAsmInfo.h"
|
#include "ARMTargetAsmInfo.h"
|
||||||
#include "ARMTargetMachine.h"
|
#include "ARMTargetMachine.h"
|
||||||
|
#include <cstring>
|
||||||
|
#include <cctype>
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
ARMTargetAsmInfo::ARMTargetAsmInfo(const ARMTargetMachine &TM) {
|
ARMTargetAsmInfo::ARMTargetAsmInfo(const ARMTargetMachine &TM) {
|
||||||
@ -80,4 +82,5 @@ ARMTargetAsmInfo::ARMTargetAsmInfo(const ARMTargetMachine &TM) {
|
|||||||
InlineAsmStart = "@ InlineAsm Start";
|
InlineAsmStart = "@ InlineAsm Start";
|
||||||
InlineAsmEnd = "@ InlineAsm End";
|
InlineAsmEnd = "@ InlineAsm End";
|
||||||
LCOMMDirective = "\t.lcomm\t";
|
LCOMMDirective = "\t.lcomm\t";
|
||||||
|
isThumb = Subtarget->isThumb();
|
||||||
}
|
}
|
||||||
|
@ -23,6 +23,8 @@ namespace llvm {
|
|||||||
|
|
||||||
struct ARMTargetAsmInfo : public TargetAsmInfo {
|
struct ARMTargetAsmInfo : public TargetAsmInfo {
|
||||||
ARMTargetAsmInfo(const ARMTargetMachine &TM);
|
ARMTargetAsmInfo(const ARMTargetMachine &TM);
|
||||||
|
|
||||||
|
bool isThumb;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user