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 | 677ccc6e8b912e1a39259952b125954820062541 (patch) | |
tree | fea1afd7f689f14ae73a033cb822ab185c535da4 /lib/Target/PowerPC | |
parent | 2a3876d885e7dd9eab77937187df4b65b2ad887f (diff) | |
download | external_llvm-677ccc6e8b912e1a39259952b125954820062541.zip external_llvm-677ccc6e8b912e1a39259952b125954820062541.tar.gz external_llvm-677ccc6e8b912e1a39259952b125954820062541.tar.bz2 |
More explicit keywords.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42316 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC')
-rw-r--r-- | lib/Target/PowerPC/PPCTargetAsmInfo.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/PowerPC/PPCTargetAsmInfo.h b/lib/Target/PowerPC/PPCTargetAsmInfo.h index 6a680e2..040786a 100644 --- a/lib/Target/PowerPC/PPCTargetAsmInfo.h +++ b/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 |