mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
More explicit keywords.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42316 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2a3876d885
commit
677ccc6e8b
@ -23,7 +23,7 @@ namespace llvm {
|
||||
class ARMTargetMachine;
|
||||
|
||||
struct ARMTargetAsmInfo : public TargetAsmInfo {
|
||||
ARMTargetAsmInfo(const ARMTargetMachine &TM);
|
||||
explicit ARMTargetAsmInfo(const ARMTargetMachine &TM);
|
||||
|
||||
const ARMSubtarget *Subtarget;
|
||||
|
||||
|
@ -22,7 +22,7 @@ namespace llvm {
|
||||
class AlphaTargetMachine;
|
||||
|
||||
struct AlphaTargetAsmInfo : public TargetAsmInfo {
|
||||
AlphaTargetAsmInfo(const AlphaTargetMachine &TM);
|
||||
explicit AlphaTargetAsmInfo(const AlphaTargetMachine &TM);
|
||||
};
|
||||
|
||||
} // namespace llvm
|
||||
|
@ -22,7 +22,7 @@ namespace llvm {
|
||||
class IA64TargetMachine;
|
||||
|
||||
struct IA64TargetAsmInfo : public TargetAsmInfo {
|
||||
IA64TargetAsmInfo(const IA64TargetMachine &TM);
|
||||
explicit IA64TargetAsmInfo(const IA64TargetMachine &TM);
|
||||
};
|
||||
|
||||
|
||||
|
@ -22,7 +22,7 @@ namespace llvm {
|
||||
class MipsTargetMachine;
|
||||
|
||||
struct MipsTargetAsmInfo : public TargetAsmInfo {
|
||||
MipsTargetAsmInfo(const MipsTargetMachine &TM);
|
||||
explicit MipsTargetAsmInfo(const MipsTargetMachine &TM);
|
||||
};
|
||||
|
||||
} // namespace llvm
|
||||
|
@ -22,15 +22,15 @@ namespace llvm {
|
||||
class PPCTargetMachine;
|
||||
|
||||
struct PPCTargetAsmInfo : public TargetAsmInfo {
|
||||
PPCTargetAsmInfo(const PPCTargetMachine &TM);
|
||||
explicit PPCTargetAsmInfo(const PPCTargetMachine &TM);
|
||||
};
|
||||
|
||||
struct DarwinTargetAsmInfo : public PPCTargetAsmInfo {
|
||||
DarwinTargetAsmInfo(const PPCTargetMachine &TM);
|
||||
explicit DarwinTargetAsmInfo(const PPCTargetMachine &TM);
|
||||
};
|
||||
|
||||
struct LinuxTargetAsmInfo : public PPCTargetAsmInfo {
|
||||
LinuxTargetAsmInfo(const PPCTargetMachine &TM);
|
||||
explicit LinuxTargetAsmInfo(const PPCTargetMachine &TM);
|
||||
};
|
||||
|
||||
} // namespace llvm
|
||||
|
@ -22,7 +22,7 @@ namespace llvm {
|
||||
class SparcTargetMachine;
|
||||
|
||||
struct SparcTargetAsmInfo : public TargetAsmInfo {
|
||||
SparcTargetAsmInfo(const SparcTargetMachine &TM);
|
||||
explicit SparcTargetAsmInfo(const SparcTargetMachine &TM);
|
||||
};
|
||||
|
||||
|
||||
|
@ -22,7 +22,7 @@ namespace llvm {
|
||||
class X86TargetMachine;
|
||||
|
||||
struct X86TargetAsmInfo : public TargetAsmInfo {
|
||||
X86TargetAsmInfo(const X86TargetMachine &TM);
|
||||
explicit X86TargetAsmInfo(const X86TargetMachine &TM);
|
||||
|
||||
virtual bool ExpandInlineAsm(CallInst *CI) const;
|
||||
private:
|
||||
|
Loading…
Reference in New Issue
Block a user