clang-format 8.0 crashes with SIGFPE (floating point exception) when formatting following file:
app.cpp:
void a() {
//line starts with '\t'
}
$ clang-format -style='{TabWidth: 0}' app.cpp
Paths
| Differential D67670
[clang-format][PR41964] Fix crash with SIGFPE when TabWidth is set to 0 and line starts with tab ClosedPublic Authored by MyDeveloperDay on Sep 17 2019, 10:37 AM.
Details
Summary clang-format 8.0 crashes with SIGFPE (floating point exception) when formatting following file: $ clang-format -style='{TabWidth: 0}' app.cpp
Diff Detail
Event Timeline
MyDeveloperDay added inline comments.
Comment Actions I should have known it was more involved. v % 0 and v / 0 are both undefined behavior This revision is now accepted and ready to land.Sep 18 2019, 12:45 AM Closed by commit rL372246: [clang-format][PR41964] Fix crash with SIGFPE when TabWidth is set to 0 and… (authored by MyDeveloperDay). · Explain WhySep 18 2019, 11:58 AM This revision was automatically updated to reflect the committed changes.
Revision Contents
Diff 220718 cfe/trunk/lib/Format/Encoding.h
cfe/trunk/lib/Format/FormatTokenLexer.cpp
cfe/trunk/lib/Format/WhitespaceManager.cpp
cfe/trunk/unittests/Format/FormatTest.cpp
|