[llvm] r226269 - [mips] Remove a redundant semicolon and add space before curly brackets. NFC.
Toma Tabacu
toma.tabacu at imgtec.com
Fri Jan 16 02:45:15 PST 2015
Author: tomatabacu
Date: Fri Jan 16 04:45:15 2015
New Revision: 226269
URL: http://llvm.org/viewvc/llvm-project?rev=226269&view=rev
Log:
[mips] Remove a redundant semicolon and add space before curly brackets. NFC.
Modified:
llvm/trunk/lib/Target/Mips/MipsSubtarget.h
Modified: llvm/trunk/lib/Target/Mips/MipsSubtarget.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/Mips/MipsSubtarget.h?rev=226269&r1=226268&r2=226269&view=diff
==============================================================================
--- llvm/trunk/lib/Target/Mips/MipsSubtarget.h (original)
+++ llvm/trunk/lib/Target/Mips/MipsSubtarget.h Fri Jan 16 04:45:15 2015
@@ -238,9 +238,9 @@ public:
bool hasMTHC1() const { return hasMips32r2(); }
bool allowMixed16_32() const { return inMips16ModeDefault() |
- AllowMixed16_32;}
+ AllowMixed16_32; }
- bool os16() const { return Os16;};
+ bool os16() const { return Os16; }
bool isTargetNaCl() const { return TargetTriple.isOSNaCl(); }
More information about the llvm-commits
mailing list