mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-07 01:47:09 +00:00
[flang] Do not print format tabs
As an extension, tabs are accepted in a format, but should be skipped, not printed.
This commit is contained in:
parent
9d899d8f01
commit
338b478e70
@ -111,7 +111,9 @@ private:
|
||||
};
|
||||
|
||||
void SkipBlanks() {
|
||||
while (offset_ < formatLength_ && format_[offset_] == ' ') {
|
||||
while (offset_ < formatLength_ &&
|
||||
(format_[offset_] == ' ' || format_[offset_] == '\t' ||
|
||||
format_[offset_] == '\v')) {
|
||||
++offset_;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user