mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +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:
parent
c3942c9623
commit
70b58044ef
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user