mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 00:32:55 +00:00
stay out of the reserved namespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117773 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
dba34d874d
commit
9a82e70275
@ -64,8 +64,8 @@ private:
|
||||
/// }
|
||||
|
||||
public:
|
||||
X86ATTAsmParser(const Target &T, MCAsmParser &_Parser, TargetMachine &TM)
|
||||
: TargetAsmParser(T), Parser(_Parser), TM(TM) {
|
||||
X86ATTAsmParser(const Target &T, MCAsmParser &parser, TargetMachine &TM)
|
||||
: TargetAsmParser(T), Parser(parser), TM(TM) {
|
||||
|
||||
// Initialize the set of available features.
|
||||
setAvailableFeatures(ComputeAvailableFeatures(
|
||||
@ -80,16 +80,16 @@ public:
|
||||
|
||||
class X86_32ATTAsmParser : public X86ATTAsmParser {
|
||||
public:
|
||||
X86_32ATTAsmParser(const Target &T, MCAsmParser &_Parser, TargetMachine &TM)
|
||||
: X86ATTAsmParser(T, _Parser, TM) {
|
||||
X86_32ATTAsmParser(const Target &T, MCAsmParser &Parser, TargetMachine &TM)
|
||||
: X86ATTAsmParser(T, Parser, TM) {
|
||||
Is64Bit = false;
|
||||
}
|
||||
};
|
||||
|
||||
class X86_64ATTAsmParser : public X86ATTAsmParser {
|
||||
public:
|
||||
X86_64ATTAsmParser(const Target &T, MCAsmParser &_Parser, TargetMachine &TM)
|
||||
: X86ATTAsmParser(T, _Parser, TM) {
|
||||
X86_64ATTAsmParser(const Target &T, MCAsmParser &Parser, TargetMachine &TM)
|
||||
: X86ATTAsmParser(T, Parser, TM) {
|
||||
Is64Bit = true;
|
||||
}
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user