[llvm] r226898 - Fix 80 column violation
Craig Topper
craig.topper at gmail.com
Thu Jan 22 22:18:35 PST 2015
Author: ctopper
Date: Fri Jan 23 00:18:35 2015
New Revision: 226898
URL: http://llvm.org/viewvc/llvm-project?rev=226898&view=rev
Log:
Fix 80 column violation
Modified:
llvm/trunk/include/llvm/MC/MCInstPrinter.h
Modified: llvm/trunk/include/llvm/MC/MCInstPrinter.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/MC/MCInstPrinter.h?rev=226898&r1=226897&r2=226898&view=diff
==============================================================================
--- llvm/trunk/include/llvm/MC/MCInstPrinter.h (original)
+++ llvm/trunk/include/llvm/MC/MCInstPrinter.h Fri Jan 23 00:18:35 2015
@@ -95,7 +95,9 @@ public:
void setPrintImmHex(HexStyle::Style Value) { PrintHexStyle = Value; }
/// Utility function to print immediates in decimal or hex.
- format_object1<int64_t> formatImm(const int64_t Value) const { return PrintImmHex ? formatHex(Value) : formatDec(Value); }
+ format_object1<int64_t> formatImm(const int64_t Value) const {
+ return PrintImmHex ? formatHex(Value) : formatDec(Value);
+ }
/// Utility functions to print decimal/hexadecimal values.
format_object1<int64_t> formatDec(const int64_t Value) const;
More information about the llvm-commits
mailing list