forked from OSchip/llvm-project
parent
0a1069d526
commit
8eb9bff493
|
@ -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…
Reference in New Issue