diff options
| author | Dan Gohman <gohman@apple.com> | 2007-09-25 20:27:06 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2007-09-25 20:27:06 +0000 |
| commit | 57211c555093413bb4a352a44563742b7b580fa5 (patch) | |
| tree | f1499f9acdbca5200474c6412ca5a98c0dd17656 /llvm/lib | |
| parent | 384f4bd87828f7cc65fcbb45c68f3246ea79bbab (diff) | |
| download | bcm5719-llvm-57211c555093413bb4a352a44563742b7b580fa5.tar.gz bcm5719-llvm-57211c555093413bb4a352a44563742b7b580fa5.zip | |
More explicit keywords.
llvm-svn: 42316
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/ARM/ARMTargetAsmInfo.h | 2 | ||||
| -rw-r--r-- | llvm/lib/Target/Alpha/AlphaTargetAsmInfo.h | 2 | ||||
| -rw-r--r-- | llvm/lib/Target/IA64/IA64TargetAsmInfo.h | 2 | ||||
| -rw-r--r-- | llvm/lib/Target/Mips/MipsTargetAsmInfo.h | 2 | ||||
| -rw-r--r-- | llvm/lib/Target/PowerPC/PPCTargetAsmInfo.h | 6 | ||||
| -rw-r--r-- | llvm/lib/Target/Sparc/SparcTargetAsmInfo.h | 2 | ||||
| -rw-r--r-- | llvm/lib/Target/X86/X86TargetAsmInfo.h | 2 |
7 files changed, 9 insertions, 9 deletions
diff --git a/llvm/lib/Target/ARM/ARMTargetAsmInfo.h b/llvm/lib/Target/ARM/ARMTargetAsmInfo.h index 9dd45e5c8f7..8356bb80880 100644 --- a/llvm/lib/Target/ARM/ARMTargetAsmInfo.h +++ b/llvm/lib/Target/ARM/ARMTargetAsmInfo.h @@ -23,7 +23,7 @@ namespace llvm { class ARMTargetMachine; struct ARMTargetAsmInfo : public TargetAsmInfo { - ARMTargetAsmInfo(const ARMTargetMachine &TM); + explicit ARMTargetAsmInfo(const ARMTargetMachine &TM); const ARMSubtarget *Subtarget; diff --git a/llvm/lib/Target/Alpha/AlphaTargetAsmInfo.h b/llvm/lib/Target/Alpha/AlphaTargetAsmInfo.h index c8b4fd5c359..e010bb34a2e 100644 --- a/llvm/lib/Target/Alpha/AlphaTargetAsmInfo.h +++ b/llvm/lib/Target/Alpha/AlphaTargetAsmInfo.h @@ -22,7 +22,7 @@ namespace llvm { class AlphaTargetMachine; struct AlphaTargetAsmInfo : public TargetAsmInfo { - AlphaTargetAsmInfo(const AlphaTargetMachine &TM); + explicit AlphaTargetAsmInfo(const AlphaTargetMachine &TM); }; } // namespace llvm diff --git a/llvm/lib/Target/IA64/IA64TargetAsmInfo.h b/llvm/lib/Target/IA64/IA64TargetAsmInfo.h index 681253c79ec..4d440b5ba3b 100644 --- a/llvm/lib/Target/IA64/IA64TargetAsmInfo.h +++ b/llvm/lib/Target/IA64/IA64TargetAsmInfo.h @@ -22,7 +22,7 @@ namespace llvm { class IA64TargetMachine; struct IA64TargetAsmInfo : public TargetAsmInfo { - IA64TargetAsmInfo(const IA64TargetMachine &TM); + explicit IA64TargetAsmInfo(const IA64TargetMachine &TM); }; diff --git a/llvm/lib/Target/Mips/MipsTargetAsmInfo.h b/llvm/lib/Target/Mips/MipsTargetAsmInfo.h index 908f036bb1f..b692cfcb292 100644 --- a/llvm/lib/Target/Mips/MipsTargetAsmInfo.h +++ b/llvm/lib/Target/Mips/MipsTargetAsmInfo.h @@ -22,7 +22,7 @@ namespace llvm { class MipsTargetMachine; struct MipsTargetAsmInfo : public TargetAsmInfo { - MipsTargetAsmInfo(const MipsTargetMachine &TM); + explicit MipsTargetAsmInfo(const MipsTargetMachine &TM); }; } // namespace llvm diff --git a/llvm/lib/Target/PowerPC/PPCTargetAsmInfo.h b/llvm/lib/Target/PowerPC/PPCTargetAsmInfo.h index 6a680e2e44c..040786ae850 100644 --- a/llvm/lib/Target/PowerPC/PPCTargetAsmInfo.h +++ b/llvm/lib/Target/PowerPC/PPCTargetAsmInfo.h @@ -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 diff --git a/llvm/lib/Target/Sparc/SparcTargetAsmInfo.h b/llvm/lib/Target/Sparc/SparcTargetAsmInfo.h index 6b2dc59847c..862398f6e8b 100644 --- a/llvm/lib/Target/Sparc/SparcTargetAsmInfo.h +++ b/llvm/lib/Target/Sparc/SparcTargetAsmInfo.h @@ -22,7 +22,7 @@ namespace llvm { class SparcTargetMachine; struct SparcTargetAsmInfo : public TargetAsmInfo { - SparcTargetAsmInfo(const SparcTargetMachine &TM); + explicit SparcTargetAsmInfo(const SparcTargetMachine &TM); }; diff --git a/llvm/lib/Target/X86/X86TargetAsmInfo.h b/llvm/lib/Target/X86/X86TargetAsmInfo.h index cc509d18537..4ee994f41c5 100644 --- a/llvm/lib/Target/X86/X86TargetAsmInfo.h +++ b/llvm/lib/Target/X86/X86TargetAsmInfo.h @@ -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: |

