Fix 80 column violation
authorCraig Topper <craig.topper@gmail.com>
Fri, 23 Jan 2015 06:18:35 +0000 (06:18 +0000)
committerCraig Topper <craig.topper@gmail.com>
Fri, 23 Jan 2015 06:18:35 +0000 (06:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@226898 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/MC/MCInstPrinter.h

index 95124c3021dd2c903e2685353efee4a0aa7b1535..cf4150b9b96b7688c5f9265719b805746d47e1e9 100644 (file)
@@ -95,7 +95,9 @@ public:
   void setPrintImmHex(HexStyle::Style Value) { PrintHexStyle = Value; }
 
   /// Utility function to print immediates in decimal or hex.
   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;
 
   /// Utility functions to print decimal/hexadecimal values.
   format_object1<int64_t> formatDec(const int64_t Value) const;