diff options
| author | David Blaikie <dblaikie@gmail.com> | 2015-03-16 18:06:57 +0000 |
|---|---|---|
| committer | David Blaikie <dblaikie@gmail.com> | 2015-03-16 18:06:57 +0000 |
| commit | 9f380a3ca0eb7fe88e315fc9af684db81456fd86 (patch) | |
| tree | 8feda05ab02a4baf7a4fb54e3dd717e00693d955 /llvm/lib/Target/Mips | |
| parent | 322ffceaf5b413b61145c26fb524a1eeb5646239 (diff) | |
| download | bcm5719-llvm-9f380a3ca0eb7fe88e315fc9af684db81456fd86.tar.gz bcm5719-llvm-9f380a3ca0eb7fe88e315fc9af684db81456fd86.zip | |
Fix uses of reserved identifiers starting with an underscore followed by an uppercase letter
This covers essentially all of llvm's headers and libs. One or two weird
cases I wasn't sure were worth/appropriate to fix.
llvm-svn: 232394
Diffstat (limited to 'llvm/lib/Target/Mips')
| -rw-r--r-- | llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h b/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h index dd0e54c79cf..243b73d216c 100644 --- a/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h +++ b/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h @@ -32,10 +32,9 @@ class MipsAsmBackend : public MCAsmBackend { bool Is64Bit; // 32 or 64 bit words public: - MipsAsmBackend(const Target &T, Triple::OSType _OSType, bool _isLittle, - bool _is64Bit) - : MCAsmBackend(), OSType(_OSType), IsLittle(_isLittle), - Is64Bit(_is64Bit) {} + MipsAsmBackend(const Target &T, Triple::OSType OSType, bool IsLittle, + bool Is64Bit) + : MCAsmBackend(), OSType(OSType), IsLittle(IsLittle), Is64Bit(Is64Bit) {} MCObjectWriter *createObjectWriter(raw_ostream &OS) const override; |

