-
Notifications
You must be signed in to change notification settings - Fork 13.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
clang crashes on applying coding standards #19742
Comments
I can reproduce this, it seems to assert in breakProtrudingToken(). Alex, can you take a look? |
I don't see any crashes on the attached file using the style quoted here (and also the llvm style). I build clang-format from r205758. $ clang-format StructureTreeCache.cpp -style=llvm $ cat .clang-format uncomment the following once clang 3.5 is outLanguage: Cpp Standard: Cpp03 ... $ clang-format StructureTreeCache.cpp -style=file Daniel, how do you reproduce the issue and what symptoms do you observe (the mostly interesting being the stack trace)? |
With clang-format built from head: $ bin/clang-format ~/Downloads/StructureTreeCache.cpp |
In case it helps, I can also reproduce the issue with clang SVN rev 205846 (via git mirror 2f53df4e2), on Mac OS X 10.8.5. I am using a Debug+Assert build, and get this: clang-format ~/Downloads/StructureTreeCache.cpp |
Fixed in r206295. |
Extended Description
Clang crashes on applying coding standards to a file named StructureTreeCache.cpp (in attachment). OS Windows 8
The error:
Assertion failed: NewRemainingTokenColumns < RemainingTokenColumns, file ..\tools\clang\lib\Format\ContinuationIndenter.cpp, line 876
Traceback (most recent call last):
File "apply-cs.py", line 54, in
subprocess.check_call([CLANG_FORMAT,'-i',f,'-style=file'])
File "C:\Python27\lib\subprocess.py", line 511, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['D:\git-root\qt\cmbuild\bin\win32_clang-format', '-i', 'D:\git-root\beetrunk\beecore\src\server\module\Bee\Cache\StructureTreeCache.cpp', '-style=file']' returned non-zero exit status -1073740791
#######################
using the following config data:
uncomment the following once clang 3.5 is out
Language: Cpp
CommentPragmas: '^ IWYU pragma:'
Standard: Cpp03
TabWidth: 4
UseTab: Always
BreakBeforeBraces: Allman
indentation rules
NamespaceIndentation: None
ContinuationIndentWidth: 4
IndentWidth: 4
IndentCaseLabels: true
spaces in angles and brackets
SpacesInParentheses: true
SpacesInAngles: false
SpaceInEmptyParentheses: false
SpacesInCStyleCastParentheses: false
SpaceBeforeAssignmentOperators: true
SpacesBeforeTrailingComments: 1
SpaceBeforeParens: Never
SpaceInEmptyParentheses: false
SpacesInAngles: false
class/constructor related
AccessModifierOffset: -4
ConstructorInitializerIndentWidth: 4
ConstructorInitializerAllOnOneLineOrOnePerLine: false
BreakConstructorInitializersBeforeComma: true
Function related formatting
IndentFunctionDeclarationAfterType: true
BinPackParameters: false
#AllowShortFunctionsOnASingleLine: true
control statement formatting
AllowShortLoopsOnASingleLine: false
BreakBeforeBinaryOperators: false
BreakBeforeTernaryOperators: true
AlignEscapedNewlinesLeft: false
AlignTrailingComments: true
AllowAllParametersOfDeclarationOnNextLine: false
AllowShortIfStatementsOnASingleLine: false
AlwaysBreakTemplateDeclarations: true
AlwaysBreakBeforeMultilineStrings: false
ColumnLimit: 120
DerivePointerBinding: false
ExperimentalAutoDetectBinPacking: false
MaxEmptyLinesToKeep: 1
ObjCSpaceBeforeProtocolList: true
PenaltyBreakBeforeFirstCallParameter: 0
PenaltyBreakComment: 300
PenaltyBreakString: 1000
PenaltyBreakFirstLessLess: 120
PenaltyExcessCharacter: 1000000
PenaltyReturnTypeOnItsOwnLine: 60
PointerBindsToType: true
Cpp11BracedListStyle: false
The text was updated successfully, but these errors were encountered: