mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-04 02:24:29 +00:00
Fix 80 column violation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@226898 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -95,7 +95,9 @@ public:
|
|||||||
void setPrintImmHex(HexStyle::Style Value) { PrintHexStyle = Value; }
|
void setPrintImmHex(HexStyle::Style Value) { PrintHexStyle = Value; }
|
||||||
|
|
||||||
/// Utility function to print immediates in decimal or hex.
|
/// 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.
|
/// Utility functions to print decimal/hexadecimal values.
|
||||||
format_object1<int64_t> formatDec(const int64_t Value) const;
|
format_object1<int64_t> formatDec(const int64_t Value) const;
|
||||||
|
Reference in New Issue
Block a user