[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / libcxxabi / .clang-format
blobdc6f2af8fb26b717200d9e2bfdc174a9bffb10ce
1 BasedOnStyle: LLVM
3 ---
4 Language: Cpp
6 AlwaysBreakTemplateDeclarations: true
7 PointerAlignment: Left
9 # Disable formatting options which may break tests.
10 SortIncludes: false
11 ReflowComments: false
13 IndentPPDirectives: AfterHash
15 # libc++ has some long names so we need more than the 80 column limit imposed by LLVM style, for sensible formatting
16 ColumnLimit: 120
17 ---