LLVM/project a916cb6clang/include/clang/Basic DarwinSDKInfo.h, clang/lib/Basic DarwinSDKInfo.cpp

[clang][driver][darwin] DarwinSDKInfo doesn't match sufficiently modified triples, doesn't warn for unsupported architectures (#204061)

DarwinSDKInfo::getPlatformPrefix(...) is passed the effective target
triple which has undergone modifications from the original -target
value, which can sometimes even include changes to the triple's
environment. That will cause it to fail to match the platform infos, not
get a platform prefix, and get incorrect default search paths. In the
case where a triple doesn't match, check all platform infos, and if they
all have the same platform prefix, then use that.

DarwinSDKInfo::supportsTriple(...) doesn't try to match the architecture
of the triple. That makes it not emit -Wincompatible-sysroot e.g. when
trying to use arm64 against a sufficiently old macOS SDK or when still
trying to build i386 for macOS. Instead of parsing values from
SDKSettings.json into a Triple, storing the probably-relevant
components, and then comparing those against a full Triple, just store
the parsed triple and get rid of the custom comparison code. While this
does make the matching problem above a little more fragile, in practice
that's well mitigated by treating thumb* and arm* as equivalent, and it

    [6 lines not shown]
DeltaFile
+176-27clang/lib/Basic/DarwinSDKInfo.cpp
+27-35clang/include/clang/Basic/DarwinSDKInfo.h
+18-11clang/test/Driver/incompatible_sysroot.c
+6-12clang/lib/Driver/ToolChains/Darwin.cpp
+3-4clang/unittests/Basic/DarwinSDKInfoTest.cpp
+4-0clang/test/Driver/driverkit-path.c
+234-891 files not shown
+235-907 files

LLVM/project 804787cclang/include/clang/Basic DiagnosticDriverKinds.td, clang/include/clang/Options Options.td

Revert all changes in clang
DeltaFile
+0-19clang/lib/Driver/ToolChains/Clang.cpp
+2-12clang/test/Driver/dxc_debug.hlsl
+4-8clang/include/clang/Options/Options.td
+0-10clang/include/clang/Basic/DiagnosticDriverKinds.td
+6-494 files

LLVM/project 1813ca6llvm/test/CodeGen/AMDGPU load-constant-i8.ll indirect-addressing-si.ll

AMDGPU: Avoid default subtarget in generated codegen tests (2/9) (#205785)

Continue migrating away from testing the dummy target, and use
real targets approximating the old behavior. Performed by script.

Co-Authored-By: Claude <noreply at anthropic.com> (Claude-Opus-4.8)
DeltaFile
+899-888llvm/test/CodeGen/AMDGPU/load-constant-i8.ll
+523-1,180llvm/test/CodeGen/AMDGPU/indirect-addressing-si.ll
+710-768llvm/test/CodeGen/AMDGPU/load-global-i8.ll
+693-685llvm/test/CodeGen/AMDGPU/load-constant-i1.ll
+664-639llvm/test/CodeGen/AMDGPU/load-constant-i16.ll
+626-635llvm/test/CodeGen/AMDGPU/load-local-i16.ll
+4,115-4,79590 files not shown
+6,994-7,67896 files

LLVM/project 334907cllvm/test/Transforms/IndVarSimplify exit-value-gep-inbounds.ll

[IndVars] Add tests with exit uses of inbounds GEPs. (NFC) (#205665)
DeltaFile
+245-0llvm/test/Transforms/IndVarSimplify/exit-value-gep-inbounds.ll
+245-01 files

LLVM/project 1254310llvm/test/CodeGen/AMDGPU div_v2i128.ll bf16.ll

AMDGPU: Avoid using default subtarget in generated codegen tests (1/9) (#205784)

Fix codegen tests using amdgcn triples without a target-cpu. The dummy
default subtarget has always been an irritating edge case to deal with.
For unknown/mesa3d/amdpal triples, this has been a gfx600-like result
and gfx700-like result for amdhsa. Convert tests to use the explicit
target. This was performed by vibe-coded script, and covers tests
using update_{llc|mir}_test_checks. There are some minor codegen
differences to be expected, mostly due to now having a scheduling 
model.

In the future we should forbid trying to codegen the default target.

Co-Authored-By: Claude <noreply at anthropic.com> (Claude-Opus-4.8)
DeltaFile
+2,592-2,587llvm/test/CodeGen/AMDGPU/div_v2i128.ll
+1,940-1,931llvm/test/CodeGen/AMDGPU/bf16.ll
+639-643llvm/test/CodeGen/AMDGPU/fceil64.ll
+538-538llvm/test/CodeGen/AMDGPU/calling-conventions.ll
+238-746llvm/test/CodeGen/AMDGPU/global_atomics_scan_fmin.ll
+238-746llvm/test/CodeGen/AMDGPU/global_atomics_scan_fmax.ll
+6,185-7,19191 files not shown
+11,628-12,66197 files

LLVM/project 81b21deoffload/test/offloading xteam_min_reduction_partial_wave.c

fix false positive clang-format suggestions
DeltaFile
+8-4offload/test/offloading/xteam_min_reduction_partial_wave.c
+8-41 files

LLVM/project 5c561a3mlir/lib/TableGen CodeGenHelpers.cpp, mlir/test/IR test-successor-verifier.mlir

[MLIR] Fix broken 'Successor<CPred<...>>' functionality in mlir-tblgen (#205375)

Previously, mlir-tblgen would generate incorrect C++ code when
passing a custom constraint to `Successor<...>`. The code would fail
to compile. We lacked end-to-end tests for this functionality and all
in-tree dialects only use `AnySuccessor` for their successors.

Custom C++ predicates for an Operation's successor(s) can be useful
in order to generate verification for certain conditions (e.g. that the
successor is the "next" block). This commit fixes the mlir-tblgen
functionality and adds end-to-end tests in the Test dialect for single
and variadic successors.

Assisted-by: Claude
DeltaFile
+49-0mlir/test/IR/test-successor-verifier.mlir
+21-11mlir/tools/mlir-tblgen/OpDefinitionsGen.cpp
+27-0mlir/test/lib/Dialect/Test/TestOps.td
+5-7mlir/test/mlir-tblgen/constraint-unique.td
+1-1mlir/lib/TableGen/CodeGenHelpers.cpp
+103-195 files

LLVM/project f775aedoffload/test/offloading xteam_min_reduction_partial_wave.c

make test clearer and a bit better
DeltaFile
+23-14offload/test/offloading/xteam_min_reduction_partial_wave.c
+23-141 files

LLVM/project 7ede8a4clang/test/CIR/CodeGen constant-inits.cpp record-zero-init-padding.c

[NFC][CIR] Fix test that used 'DAG-SAME' (#205867)

'DAG-SAME' isn't a thing in file-check, so these lines weren't being
checked. This patch just puts them all on teh same line as they should
be.
DeltaFile
+10-43clang/test/CIR/CodeGen/constant-inits.cpp
+4-22clang/test/CIR/CodeGen/record-zero-init-padding.c
+14-652 files

LLVM/project 99f4b63llvm/test/CodeGen/AMDGPU rotate-add.ll

AMDGPU: Fix wrong triple in rotate-add test (#205863)

This was overwritten by the command line anyway.
DeltaFile
+0-2llvm/test/CodeGen/AMDGPU/rotate-add.ll
+0-21 files

LLVM/project 65d1661lldb/source/Plugins/Process/gdb-remote GDBRemoteCommunicationClient.cpp

[lldb][gdb-remote] Send QSetSTDIOWindowSize for a 0x0 size (#205772)

The client uses a 0x0 STDIO window size as a deliberate signal to the
server that there is no client terminal, so the server should redirect
the inferior's stdio over anonymous pipes instead of a ConPTY (on
Windows).

This is a follow up to https://github.com/llvm/llvm-project/pull/203562.

rdar://178725958
DeltaFile
+2-1lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
+2-11 files

LLVM/project 291a2d1llvm/test/ThinLTO/X86 memprof-icp.ll

[MemProf] Make ICP test check compared target more strictly (#201656)

We intend to check that we are comparing to the original uncloned
target, but weren't checking for EOL. Add the EOL check.
DeltaFile
+4-4llvm/test/ThinLTO/X86/memprof-icp.ll
+4-41 files

LLVM/project ab3d63cclang-tools-extra/pp-trace PPCallbacksTracker.cpp

[Clang-tools-extra] Add missing values to CharacteristicKindStrings (#205455)

Static analysis flagged that we were indexing CharacteristicKindStrings
in PPCallbacksTracker::FileChanged based on the values of
SrcMgr::CharacteristicKind which would access outside array bounds for
some values of the enum. As far I can see all value of the enum are
possible when calling FileChanged and so the array should indeed cover
all values. So I added the missing values to the array.
DeltaFile
+3-2clang-tools-extra/pp-trace/PPCallbacksTracker.cpp
+3-21 files

LLVM/project dc31f05clang/docs ReleaseNotes.rst, clang/lib/Sema SemaExpr.cpp

[Clang] Rebuild lambda capture initializers in default member initializers

Fixes https://github.com/llvm/llvm-project/issues/196469

Since the CWG1815 implementation, InitListChecker rebuilds a default member initializer at its point of use in aggregate initialization. The rebuild uses the EnsureImmediateInvocationInDefaultArgs tree transform, where TransformCXXBindTemporaryExpr strips CXXBindTemporaryExpr nodes, relying on the subexpression's rebuild to recreate the temporary binding and re-register cleanups in the current evaluation context.

However, the transform overrides TransformLambdaExpr because the lambda body is not a subexpression. Returning the original lambda unchanged skips the MaybeBindToTemporary call that BuildLambdaExpr would normally perform, so the rebuilt initializer can lack the closure temporary binding and cleanup marker. CodeGen then misses the closure destructor and init-captured members can leak.

Lambda init-capture initializers are evaluated in the enclosing context and can also contain immediate invocations or source-location expressions that need to be rebuilt at the default-initializer use site. Rebuild those initializer expressions without rebuilding the closure type, capture declarations, or body, so body references to init-capture declarations remain valid. When a capture initializer changes, create a replacement LambdaExpr that shares the existing closure and body, then bind the lambda temporary explicitly to restore cleanup emission.

Co-Authored-By: GPT-5.5 <noreply at openai.com>
DeltaFile
+48-8clang/lib/Sema/SemaExpr.cpp
+37-0clang/test/CodeGenCXX/gh196469-default-member-init-lambda-cleanup.cpp
+23-0clang/test/SemaCXX/gh196469-default-member-init-lambda-capture.cpp
+0-12clang/test/SemaCXX/source_location.cpp
+2-0clang/docs/ReleaseNotes.rst
+110-205 files

LLVM/project ebc2f79clang/lib/CIR/Dialect/Transforms EHABILowering.cpp, clang/test/CIR/CodeGen cleanup-scope-throw-caught.cpp

[CIR] Fix lost catch clauses on EH landing pads (#205638)

A throw caught by an enclosing handler could call std::terminate instead of
entering the handler. The smallest trigger is a try that destroys a local and
throws a new-expression whose type has a throwing constructor: two cleanups
then sit on the path to the handler and produce two cir.eh.initiate operations
that funnel into one cir.eh.dispatch. The same bug also asserted on ordinary
nested try/catch and dropped the outer handler's catch clause from the inner
landing pad on a nested throw.

ItaniumEHLowering::lowerEhInitiate derived each landing pad's catch clauses
while destructively walking the eh_token graph, tying a correctness property
to lowering order: whichever initiate lowered first tore down the shared cir.br
edges, so the other reached no dispatch and kept an empty catch_type_list -- a
cleanup-only landing pad that resumes past the handler.

lowerFunc now does a read-only walk first. For each initiate it collects every
dispatch the exception can reach (innermost first, preserving nested catch
order) and records the catch_type_list, plus the cleanup clause when a cleanup

    [4 lines not shown]
DeltaFile
+147-57clang/lib/CIR/Dialect/Transforms/EHABILowering.cpp
+102-0clang/test/CIR/CodeGen/cleanup-scope-throw-caught.cpp
+249-572 files

LLVM/project bc3eb52clang/lib/CIR/CodeGen CIRGenBuiltin.cpp, clang/test/CIR/CodeGen builtin-atomic-is-lock-free.c

[CIR] Lower __atomic_is_lock_free / __c11_atomic_is_lock_free (#205862)

`__atomic_is_lock_free` and `__c11_atomic_is_lock_free` were routed to
`errorNYI` in CIRGen, so `std::atomic<T>::is_lock_free()` failed to
compile under `-fclangir` whenever the query wasn't constant-folded --
which is what the libcxx atomics lock-free tests hit.

This mirrors classic CodeGen (`CGBuiltin.cpp`): emit a call to the
runtime entry `bool __atomic_is_lock_free(size_t size, void *ptr)`.
`__atomic_is_lock_free` forwards its pointer argument;
`__c11_atomic_is_lock_free` passes a null pointer, since an `_Atomic`
object is always suitably aligned. `__atomic_test_and_set` /
`__atomic_clear` stay NYI.

The lowered call omits the `noundef`/`zeroext` argument and return
attributes classic emits, and the declaration picks up `dso_local`.
That's the existing CIR libcall attribute gap, so the test uses split
`LLVMCIR`/`OGCG` prefixes where the two diverge and a shared skeleton
where they match.
DeltaFile
+46-0clang/test/CIR/CodeGen/builtin-atomic-is-lock-free.c
+25-0clang/lib/CIR/CodeGen/CIRGenBuiltin.cpp
+71-02 files

LLVM/project 67cc47cllvm/include/llvm/Target TargetLoweringObjectFile.h, llvm/lib/CodeGen TargetLoweringObjectFileImpl.cpp

Revert "[x86] Handle implicit sections when determining if a global is large" (#205859)

Reverts llvm/llvm-project#204247

Causes crashes:
https://github.com/llvm/llvm-project/pull/204247#issuecomment-4799229027

Fixes #205801
DeltaFile
+0-134llvm/test/CodeGen/X86/large-implicit-section.ll
+24-5llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
+8-14llvm/lib/Target/TargetMachine.cpp
+0-19llvm/lib/Target/TargetLoweringObjectFile.cpp
+0-5llvm/include/llvm/Target/TargetLoweringObjectFile.h
+32-1775 files

LLVM/project e32a1c6clang/lib/Driver/ToolChains ZOS.cpp, clang/test/Driver zos-ld.c

[SystemZ][z/OS] Improve link command for shared libraries (#204205)

This PR adds -e/-O CELQSTRT and improves the link command for shared
libs.

Co-authored-by: Yusra Syeda <yusra.syeda at ibm.com>
DeltaFile
+25-13clang/lib/Driver/ToolChains/ZOS.cpp
+18-4clang/test/Driver/zos-ld.c
+43-172 files

LLVM/project eb05efcflang/include/flang/Parser parse-tree.h, flang/lib/Parser program-parsers.cpp

[flang][openacc] Ignore bare acc routine in module subprogram part instead of erroring out (#205450)

This small code below would trigger not easy to understand error like
`error: expected 'END'`. Ignore such directive and emit the standard
warning.

```
module acc_routine_bad
contains
!$acc routine
subroutine acc_routine20()
end subroutine
end module
```
DeltaFile
+10-0flang/test/Semantics/OpenACC/acc-routine-bad.f90
+3-1flang/lib/Semantics/program-tree.cpp
+2-0flang/lib/Parser/program-parsers.cpp
+1-0flang/include/flang/Parser/parse-tree.h
+16-14 files

LLVM/project 42e02callvm/include/llvm/Transforms/Vectorize/SandboxVectorizer/Passes BottomUpVec.h, llvm/lib/Transforms/Vectorize/SandboxVectorizer/Passes BottomUpVec.cpp PassRegistry.def

[SBVec] Implement topDown/botUp vectorizers in unison

This patch introduces the `top-down-vec` pass to the Sandbox Vectorizer,
adding the ability to traverse use-def chains top-down to discover and
collect vectorization opportunities. Furthermore, this patch unifies
the two vectorizers into a single implementation to minimize code
duplication.
DeltaFile
+90-16llvm/lib/Transforms/Vectorize/SandboxVectorizer/Passes/BottomUpVec.cpp
+94-0llvm/test/Transforms/SandboxVectorizer/topdown_vec.ll
+69-10llvm/test/Transforms/SandboxVectorizer/pack.ll
+57-1llvm/test/Transforms/SandboxVectorizer/external_uses.ll
+23-6llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer/Passes/BottomUpVec.h
+1-0llvm/lib/Transforms/Vectorize/SandboxVectorizer/Passes/PassRegistry.def
+334-336 files

LLVM/project 3257220lldb/include/lldb/Breakpoint BreakpointList.h Breakpoint.h, lldb/source/Breakpoint BreakpointList.cpp

[lldb] Change BreakpointList::FindBreakpointsByName to use StringRef (#205695)

It's not possible to turn a StringRef into a c-string safely without a
potential allocation. I will use this in a follow-up to remove
ConstString from BreakpointName.
DeltaFile
+3-3lldb/source/Breakpoint/BreakpointList.cpp
+1-2lldb/source/Target/Target.cpp
+1-1lldb/include/lldb/Breakpoint/BreakpointList.h
+1-1lldb/include/lldb/Breakpoint/Breakpoint.h
+6-74 files

LLVM/project 6d47d03llvm/test/CodeGen/AMDGPU rotate-add.ll

AMDGPU: Fix wrong triple in rotate-add test

This was overwritten by the command line anyway.
DeltaFile
+0-2llvm/test/CodeGen/AMDGPU/rotate-add.ll
+0-21 files

LLVM/project aa1cc2dllvm/include/llvm/ADT StringRef.h, llvm/unittests/ADT StringRefTest.cpp

[ADT] Add StringRef::nonEmptyOr (#204690)

This adds a new method to StringRef. The intended use case is for
situations when a non-empty StringRef is needed but some operation
returns an empty StringRef because of missing data or some other
exception.

This is primarily for ergonomics. I'm mainly motivated to avoid creating
a temporary StringRef in situations where a StringRef is obtained
through a long call chain. e.g.


`doAThing(my_obj.getFoo().getBar().getBaz().getStringRef().nonEmptyOr("unknown"))`

---------

Co-authored-by: Jonas Devlieghere <jonas at devlieghere.com>
DeltaFile
+7-0llvm/unittests/ADT/StringRefTest.cpp
+6-0llvm/include/llvm/ADT/StringRef.h
+13-02 files

LLVM/project 8987645llvm/lib/Target/BPF BTFDebug.cpp BPFAbstractMemberAccess.cpp, llvm/test/CodeGen/BPF/BTF struct-member-order.ll

[BPF] Sort BTF struct members by offset (#205396)

Sort BTF structure elements by their debug offsets. Prevent
source-ordered Rust debug metadata from producing descending member
offsets after rustc chooses a different physical layout, because the
kernel rejects such BTF.

Use the sorted order for member emission, declaration-tag component
indexes, and CO-RE access strings. Keep physical offset calculations on
the original debug indexes so changing BTF order does not change
generated code.

Eliminate the need for the bpf-linker metadata rewrite by enforcing the
ordering in the LLVM BPF backend:

https://github.com/aya-rs/bpf-linker/commit/1007ec7fed03562eb7d08f3e7521094a7e698b95
DeltaFile
+104-0llvm/test/CodeGen/BPF/CORE/struct-member-order.ll
+45-0llvm/test/CodeGen/BPF/BTF/struct-member-order.ll
+16-6llvm/lib/Target/BPF/BTFDebug.cpp
+18-2llvm/lib/Target/BPF/BPFAbstractMemberAccess.cpp
+15-0llvm/lib/Target/BPF/BPFCORE.h
+4-2llvm/lib/Target/BPF/BTFDebug.h
+202-106 files

LLVM/project 617e2a1llvm/lib/Transforms/Scalar LoopInterchange.cpp, llvm/test/Transforms/LoopInterchange transform-stop-partway.ll pr57148.ll

[LoopInterchange] Prevent the transformation stage from stopping partway
DeltaFile
+19-38llvm/lib/Transforms/Scalar/LoopInterchange.cpp
+15-19llvm/test/Transforms/LoopInterchange/transform-stop-partway.ll
+18-14llvm/test/Transforms/LoopInterchange/pr57148.ll
+12-14llvm/test/Transforms/LoopInterchange/pr43326-ideal-access-pattern.ll
+11-13llvm/test/Transforms/LoopInterchange/interchanged-loop-nest-3.ll
+11-9llvm/test/Transforms/LoopInterchange/guarded-inner-loop.ll
+86-1073 files not shown
+100-1159 files

LLVM/project 3d373b0clang/lib/ScalableStaticAnalysis/Core/Serialization/JSONFormat JSONFormatImpl.cpp, clang/lib/ScalableStaticAnalysisFramework/Core/Serialization/JSONFormat JSONFormatImpl.cpp

Merge branch 'main' into users/kparzysz/c01-clause-check
DeltaFile
+1,443-0clang/unittests/ScalableStaticAnalysis/Analyses/PointerFlow/PointerFlowTest.cpp
+0-1,443clang/unittests/ScalableStaticAnalysisFramework/Analyses/PointerFlow/PointerFlowTest.cpp
+0-1,380clang/lib/ScalableStaticAnalysisFramework/Core/Serialization/JSONFormat/JSONFormatImpl.cpp
+1,380-0clang/lib/ScalableStaticAnalysis/Core/Serialization/JSONFormat/JSONFormatImpl.cpp
+1,171-0libcxx/test/std/text/text_encoding/test_text_encoding.h
+1,094-0flang/test/Lower/OpenMP/compound.f90
+5,088-2,8231,328 files not shown
+48,768-32,1681,334 files

LLVM/project b7c56b5llvm/lib/Target/NVPTX NVPTXAddressFolder.cpp NVPTXInstrInfo.td, llvm/test/CodeGen/NVPTX address-folder.ll address-folder.mir

Revert "[NVPTX] Fold symbol addresses into memory operands" (#205852)

Reverts llvm/llvm-project#202379

check-llvm now fails on one of the new testcases
```
Failed Tests (1):
  LLVM :: CodeGen/NVPTX/address-folder.ll
```
DeltaFile
+0-123llvm/lib/Target/NVPTX/NVPTXAddressFolder.cpp
+0-113llvm/test/CodeGen/NVPTX/address-folder.ll
+0-60llvm/test/CodeGen/NVPTX/address-folder.mir
+2-2llvm/lib/Target/NVPTX/NVPTXInstrInfo.td
+0-3llvm/lib/Target/NVPTX/NVPTX.h
+0-3llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp
+2-3044 files not shown
+2-30910 files

LLVM/project 2de5eb4offload/test/offloading xteam_min_reduction_partial_wave.c, openmp/device/src Reduction.cpp

[offload][OpenMP] Fix partial warp reduction

Don't use a full warp for the final cross-team reduction if the
reduction's thread limit is below the warp size.

Claude assisted with the test.
DeltaFile
+41-0offload/test/offloading/xteam_min_reduction_partial_wave.c
+1-1openmp/device/src/Reduction.cpp
+42-12 files

LLVM/project f3cb7bbllvm/benchmarks ImmutableSetIteratorBM.cpp CMakeLists.txt, llvm/include/llvm/ADT ImmutableSet.h

[ADT] Rewrite ImmutableSet/Map in-order iterator without per-node state (#205552)

ImutAVLTreeInOrderIterator was layered on a "generic" iterator whose
stack stored a 2-bit visit-state (None/Left/Right) packed into the low
bits of each node pointer, and which was spun through several
intermediate states per in-order step.

Replace it with a single iterator that keeps a stack of plain node
pointers (the root-to-current ancestor chain) and recovers the traversal
direction by inspecting whether it is ascending from a node's left or
right child. A node's parent cannot be cached in the node itself because
these trees are persistent and structurally shared (one node may be a
child of different parents across tree versions), so the ancestor stack
is the per-traversal parent chain.

The observable contract is unchanged: same in-order sequence, same
skipSubTree() semantics (so tree canonicalization via isEqual is
unaffected), and the iterator stays bidirectional. operator== now
compares the current node rather than the whole path, which is O(1) and

    [21 lines not shown]
DeltaFile
+87-142llvm/include/llvm/ADT/ImmutableSet.h
+187-0llvm/unittests/ADT/ImmutableSetTest.cpp
+121-0llvm/benchmarks/ImmutableSetIteratorBM.cpp
+1-0llvm/benchmarks/CMakeLists.txt
+396-1424 files

LLVM/project e87160elldb/source/Plugins/SymbolFile/DWARF DWARFASTParserClang.cpp

[lldb] Fix DWARFASTParserClang formatting (#205857)

In #205701, I applied Michael's suggestion and enabled auto-merge.
Despite the formatter check failing, the change still got merged. Fix
the formatting and another inconsistency in the use of braces.
DeltaFile
+8-7lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
+8-71 files