LLVM/project c9b0931lldb/packages/Python/lldbsuite/test decorators.py, lldb/packages/Python/lldbsuite/test/tools/lldb-server gdbremote_testcase.py

[lldb] Add requireSocketPermission decorator for tests that bind sockets (#219208)

We sometimes run tests in sandboxed environments that deny all calls to
`bind`. This breaks a few of our tests that e.g. use a mock GDB server
or any other functionality involving sockets.

This patch adds a requireSocketPermission decorator (and an equivalent
utility for unittests) that check whether we are allowed to call bind.
If we aren't allowed to call bind, we skip the few tests that need this
functionality.
DeltaFile
+25-1lldb/packages/Python/lldbsuite/test/decorators.py
+12-0lldb/unittests/SBTestingSupport/SBTestUtilities.cpp
+4-0lldb/unittests/API/SBProtocolServerTest.cpp
+2-1lldb/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py
+3-0lldb/unittests/SBTestingSupport/SBTestUtilities.h
+2-0lldb/test/API/tools/lldb-dap/launch/TestDAP_launch_termination.py
+48-210 files not shown
+60-216 files

LLVM/project d59fa1cllvm/lib/Target/Hexagon CMakeLists.txt Hexagon.h, llvm/test/CodeGen/Hexagon align-global-arrays.ll

[Hexagon] Add GlobalArrayAlignment pass (#217850)

Add a module pass that raises the alignment of global integer arrays
(char, short, int), including multi-dimensional arrays, to an 8-byte
boundary. This gives their base address a wider alignment, which is
beneficial for the wide (double-word) loads and stores available on
Hexagon.

At -O1/-O2 the pass keeps byte and half-word arrays at their natural
alignment to reduce .rodata size; full 8-byte alignment is applied at
-O3. This size-reduction behavior can be disabled with
-hexagon-disable-align-opt-byte-half.

The pass is enabled by default and can be disabled with
-hexagon-disable-global-array-align.

Co-Authored by: Jyotsna Verma jverma at quicinc.com
DeltaFile
+125-0llvm/lib/Target/Hexagon/HexagonAlignGlobalArrays.cpp
+77-0llvm/test/CodeGen/Hexagon/align-global-arrays.ll
+6-0llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp
+4-0llvm/lib/Target/Hexagon/Hexagon.h
+1-0llvm/lib/Target/Hexagon/CMakeLists.txt
+213-05 files

LLVM/project fc00f85llvm/lib/Target/PowerPC PPCTLSDynamicCall.cpp

PowerPC: Use use_instructions in TLSDynamicCall user collection

The loop only collects the using instructions, so iterate
use_instructions() instead of the operands to get their parents.

Co-authored-by: Claude (Claude-Opus-4.8) <noreply at anthropic.com>
DeltaFile
+2-2llvm/lib/Target/PowerPC/PPCTLSDynamicCall.cpp
+2-21 files

LLVM/project c8f86a9libcxx/include/__vector vector.h

[libc++] Use __copy_n in vector::__assign_with_size (#218370)

This was originally part of #214132. However, that patch has some
difficult to track down performance issue. I'm splitting this up to make
the search easier.
DeltaFile
+1-1libcxx/include/__vector/vector.h
+1-11 files

LLVM/project 7599928llvm/lib/Target/X86 X86CompressEVEX.cpp

X86: Use use_instructions in CompressEVEX cross-block check

The loop only checks the using instruction's parent block, so iterate
use_instructions() instead of the operands and checking their parents.

Co-authored-by: Claude (Claude-Opus-4.8) <noreply at anthropic.com>
DeltaFile
+2-2llvm/lib/Target/X86/X86CompressEVEX.cpp
+2-21 files

LLVM/project c1a0ce0mlir/include/mlir/Dialect/LLVMIR NVVMOps.td, mlir/lib/Dialect/LLVMIR/IR NVVMDialect.cpp

[MLIR][NVVM] Support tcgen05.mma{.block_scale}.decompress_b Ops (#218354)

This change adds support for `tcgen05.mma.decompress_b` and
`tcgen05.mma.block_scale.decompress_b` MLIR Ops.
DeltaFile
+307-0mlir/test/Target/LLVMIR/nvvm/tcgen05-mma-tensor-decompress-b.mlir
+307-0mlir/test/Target/LLVMIR/nvvm/tcgen05-mma-shared-decompress-b.mlir
+157-0mlir/test/Target/LLVMIR/nvvm/tcgen05-mma-block-scale-tensor-decompress-b.mlir
+157-0mlir/test/Target/LLVMIR/nvvm/tcgen05-mma-block-scale-shared-decompress-b.mlir
+144-0mlir/include/mlir/Dialect/LLVMIR/NVVMOps.td
+123-0mlir/lib/Dialect/LLVMIR/IR/NVVMDialect.cpp
+1,195-01 files not shown
+1,206-07 files

LLVM/project 6f7822allvm/lib/Target/Hexagon HexagonEarlyIfConv.cpp

Hexagon: Use use_instructions in EarlyIfConversion predicate check

The loop only checks whether any user is a PHI, so iterate
use_instructions() instead of the operands to query the parents.

Co-authored-by: Claude (Claude-Opus-4.8) <noreply at anthropic.com>
DeltaFile
+2-2llvm/lib/Target/Hexagon/HexagonEarlyIfConv.cpp
+2-21 files

LLVM/project cb05854llvm/lib/Target/AMDGPU GCNSchedStrategy.cpp

AMDGPU: Use use_nodbg_instructions in GCNSchedStrategy MFMA check

The loop only inspects the using instruction, so iterate
use_nodbg_instructions() instead of the operands and their parents.

Co-authored-by: Claude (Claude-Opus-4.8) <noreply at anthropic.com>
DeltaFile
+2-2llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp
+2-21 files

LLVM/project ed96f74llvm/lib/Target/RISCV RISCVInstrInfo.h RISCVVLOptimizer.cpp

RISCV: Pass MachineRegisterInfo to isVLKnownLE

isVLKnownLE and its getEffectiveImm helper used the VL operands to reach
the MachineRegisterInfo. Pass it directly so they no longer depend on
MachineOperand::getParent().

Co-authored-by: Claude (Claude-Opus-4.8) <noreply at anthropic.com>
DeltaFile
+8-8llvm/lib/Target/RISCV/RISCVVectorPeephole.cpp
+8-8llvm/lib/Target/RISCV/RISCVInstrInfo.cpp
+7-7llvm/lib/Target/RISCV/RISCVVLOptimizer.cpp
+2-1llvm/lib/Target/RISCV/RISCVInstrInfo.h
+25-244 files

LLVM/project ceec1c6llvm/lib/Target/Hexagon HexagonBitSimplify.cpp

Hexagon: Use use_instructions in BitSimplify use scans (#219308)

This only inspects the parent instruction, so use use_instructions
instead.

Co-authored-by: Claude (Claude-Opus-4.8) <noreply at anthropic.com>
DeltaFile
+8-10llvm/lib/Target/Hexagon/HexagonBitSimplify.cpp
+8-101 files

LLVM/project 1efca70clang/lib/CodeGen/TargetBuiltins RISCV.cpp, clang/test/CodeGen/RISCV rvp-intrinsics.c

[RISCV][P-ext][NFC] Overload scalar mqacc/mqracc intrinsics by element width (#219345)

Collapse the scalar halfword (`mqacc.h*`, i32) and word (`mqacc.w*`,
i64) forms of the Packed Q-format Multiply Parts Accumulate intrinsics
into one overloaded intrinsic per element selection
(`int_riscv_mqacc_00` covers both `mqacc.h00` and `mqacc.w00`, via
result/operand types), mirroring #218875. Packed form (`pmqacc_h*`) and
C builtins stay split. No functional change to the generated code.
DeltaFile
+63-84llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+24-24clang/test/CodeGen/RISCV/rvp-intrinsics.c
+13-24clang/lib/CodeGen/TargetBuiltins/RISCV.cpp
+7-13llvm/include/llvm/IR/IntrinsicsRISCV.td
+6-6llvm/test/CodeGen/RISCV/rvp-simd-64.ll
+6-6llvm/test/CodeGen/RISCV/rvp-simd-32.ll
+119-1576 files

LLVM/project 5f98bcaclang/lib/CodeGen CGOpenMPRuntime.cpp

static cast
DeltaFile
+2-2clang/lib/CodeGen/CGOpenMPRuntime.cpp
+2-21 files

LLVM/project 8e97ebbclang/include/clang/AST ExternalASTSource.h, clang/include/clang/Sema Sema.h ExternalSemaSource.h

[NFC][clang] Move LazyVector to Sema (#219188)

It is only used there.
DeltaFile
+0-84clang/include/clang/AST/ExternalASTSource.h
+79-0clang/include/clang/Sema/ExternalSemaSource.h
+6-6clang/include/clang/Sema/Sema.h
+85-903 files

LLVM/project 90e5afeclang/include/clang/AST Redeclarable.h ASTContext.h, clang/lib/AST ExternalASTSource.cpp ASTContext.cpp

[clang][AST] Un-template LazyGenerationalUpdatePtr (#219187)

It is only used in Redeclarable with a single set of template
arguments. Rename to LazyGenerationalDeclPtr and simplify the code.
DeltaFile
+22-36clang/include/clang/AST/ExternalASTSource.h
+0-13clang/include/clang/AST/ASTContext.h
+0-9clang/lib/AST/ASTContext.cpp
+7-0clang/lib/AST/ExternalASTSource.cpp
+1-3clang/include/clang/AST/Redeclarable.h
+1-1llvm/unittests/ADT/PointerUnionTest.cpp
+31-626 files

LLVM/project ad3ba45orc-rt/include/orc-rt-internal/bedrock TargetDetails.h, orc-rt/include/orc-rt-internal/support StringExtras.h

[orc-rt] Add include/orc-rt-internal for internal APIs. (#219386)

Headers here are not installed. A prefix directory rather than a
separate include root, so that internality is visible at each #include
site.

Moved in: support/{Endian,StringExtras}.h; orc-rt-utils/CommandLine.h
becomes orc-rt-internal/tools/CommandLine.h, retiring orc-rt-utils/ as a
third include root; and lib/bedrock/{Environment,GDBJITRegistrar,
TargetDetails}.h, so lib/ now holds only translation units and the two
Unix/*.inc fragments. That also removes the last "../" include, and
orc-rt-bedrock-impl-headers, which existed only to expose lib/ for
cross-directory includes.
DeltaFile
+0-264orc-rt/include/orc-rt-utils/CommandLine.h
+264-0orc-rt/include/orc-rt-internal/tools/CommandLine.h
+0-179orc-rt/include/orc-rt/support/StringExtras.h
+179-0orc-rt/include/orc-rt-internal/support/StringExtras.h
+0-51orc-rt/lib/bedrock/TargetDetails.h
+51-0orc-rt/include/orc-rt-internal/bedrock/TargetDetails.h
+494-49424 files not shown
+628-63830 files

LLVM/project 1047073llvm/include/llvm/ADT FoldingSet.h, llvm/unittests/ADT FoldingSet.cpp

[ADT] Fix FoldingSetIterator::operator* pointer adjustment for multiple inheritance (#219349)

b7dc8e356b89 replaced the void*->FoldingSetNode*->T* cast in
FoldingSetIteratorImpl::getNode() with a direct void*->T* cast, dropping
the base-to-derived adjustment needed when FoldingSetNode isn't T's
first base. Restore the FoldingSetNode* intermediate cast.

Found via a downstream user with a multiply-inherited FoldingSetNode
type that iterates its FoldingSet directly (via find_if over
begin()/end()), corrupting the dereferenced pointer and crashing.

---------

Co-authored-by: Claude Sonnet 5 <noreply at anthropic.com>
DeltaFile
+17-0llvm/unittests/ADT/FoldingSet.cpp
+1-1llvm/include/llvm/ADT/FoldingSet.h
+18-12 files

LLVM/project c3a8b92llvm/lib/Target/RISCV RISCVTargetTransformInfo.cpp, llvm/test/Transforms/InstCombine/RISCV riscv-vsetvlimax-range.ll riscv-vsetvli-range.ll

[RISCV] Attach VLMAX range attribute for vsetvli/vsetvlimax in InstCombine

Attach a range return attribute to riscv_vsetvli/vsetvlimax so the generic
value analyses can reason about the result via CallBase::getRange(), using the
subtarget's real VLEN instead of the architectural maximum.

VLMAX = VLEN * LMUL / SEW. vsetvlimax returns exactly VLMAX; vsetvli returns
0 <= vl <= min(AVL, VLMAX), which equals AVL only when AVL cannot exceed the
smallest possible VLMAX. Otherwise vl may shrink below VLMAX (to 0 at runtime),
so we only claim the VLMAX-derived upper bound.

Fixes #217784.

Assisted-by: TRAE CLI (Opus 4.8)

Reviewers: efriedma-quic, preames, lenary, lukel97

Reviewed By: lukel97

Pull Request: https://github.com/llvm/llvm-project/pull/218652
DeltaFile
+125-0llvm/test/Transforms/InstCombine/RISCV/riscv-vsetvli-range.ll
+107-0llvm/test/Transforms/InstCombine/RISCV/riscv-vsetvlimax-range.ll
+59-0llvm/lib/Target/RISCV/RISCVTargetTransformInfo.cpp
+291-03 files

LLVM/project 3b17fa2lld/MachO ObjC.h ObjC.cpp, lld/test/MachO objc-category-merging-minimal.s objc-category-merging-swift-protocol-conformance.s

[lld-macho] Remove symbol name assumptions from category merging (#217276)

The category merger required every __objc_catlist entry to point to a
symbol named with the `__OBJC_$_CATEGORY_` or `__CATEGORY_` prefix and
hit llvm_unreachable otherwise. Such names cannot be relied upon: `ld
-r` rewrites the names of category body symbols to generated names like
`l002`, and linking its output crashes lld.

The merger also used symbol names to predict the layout of protocol
lists, which is fragile even for conventionally named inputs. The repro
https://github.com/llvm/llvm-project/pull/95124#issuecomment-4267900795
fired the "Protocol list does not match expected size" assertion.

Remove the category symbol name requirement, and drop the layout
assertion together with the SourceLanguage machinery.
DeltaFile
+394-0lld/test/MachO/objc-category-merging-swift-protocol-conformance.s
+15-72lld/MachO/ObjC.cpp
+6-0lld/test/MachO/objc-category-merging-minimal.s
+0-3lld/MachO/ObjC.h
+415-754 files

LLVM/project fb9a86cmlir/include/mlir/Dialect/LLVMIR NVVMOps.td, mlir/lib/Dialect/LLVMIR/IR NVVMDialect.cpp

[MLIR][NVVM] Add S2G and Reduce override NVVM Dialect ops (#216481)

This change adds S2G and Reduction NVVM Dialect operations with tensor
map override capability.
DeltaFile
+371-0mlir/test/Target/LLVMIR/nvvm/tma_store_reduce_override.mlir
+211-0mlir/lib/Dialect/LLVMIR/IR/NVVMDialect.cpp
+179-0mlir/include/mlir/Dialect/LLVMIR/NVVMOps.td
+153-0mlir/test/Target/LLVMIR/nvvm/tma_store_override.mlir
+66-0mlir/test/Target/LLVMIR/nvvm/nvvmir-invalid/tma_store_override_invalid.mlir
+59-0mlir/test/Target/LLVMIR/nvvm/nvvmir-invalid/tma_reduce_override_invalid.mlir
+1,039-06 files

LLVM/project 6e170cebolt/lib/Target/RISCV RISCVMCPlusBuilder.cpp, bolt/test/RISCV plt-call.test

[BOLT][RISCV] Implement indirect PLT calls (#219184)

This patch implements `MCPlusBuilder::createIndirectPLTCall` for RISC-V,
enabling BOLT's `--plt=hot` and `--plt=all` optimizations for RISC-V
binaries.

The PLT call pass replaces direct calls and tail calls to PLT entries
with indirect calls through the corresponding resolved GOT slot. The
generated sequence is:

    auipc  t3, %pcrel_hi(target at GOT)
    l[dw]  t3, %pcrel_lo(.Lpcrel_hi)(t3)
    jalr   ra, t3, 0
DeltaFile
+53-0bolt/lib/Target/RISCV/RISCVMCPlusBuilder.cpp
+44-0bolt/test/RISCV/plt-call.test
+97-02 files

LLVM/project 2876d94llvm/lib/Target/WebAssembly WebAssemblyISelLowering.cpp, llvm/test/CodeGen/WebAssembly f16-intrinsics.ll

[WebAssembly] Expand v8f16 SELECT_CC (#218922)

Follow up for #213280 (read
https://github.com/llvm/llvm-project/pull/213280#discussion_r3797603654)

Mark `v8f16 SELECT_CC` for expansion so scalar comparison-based selects
lower through the existing comparison and `v128.select` patterns
DeltaFile
+32-0llvm/test/CodeGen/WebAssembly/f16-intrinsics.ll
+2-2llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
+34-22 files

LLVM/project 49f7deaorc-rt/include/orc-rt/bedrock Error.h SimplePackedSerialization.h, orc-rt/include/orc-rt/support Error.h SimplePackedSerialization.h

[orc-rt] Split headers into support/ and bedrock/ layers. NFC. (#219374)

Follow-up to 8c7563a40a5b, which nested the runtime's headers under
include/orc-rt/bedrock/ and noted that library-neutral headers would
later be split back out.

The split names a layer -- who may include whom. support/ holds
vocabulary and utilities that depend on nothing else in orc-rt; bedrock/
holds the runtime components (Session, Service, the memory map, the
dylib manager, the SPS controller interfaces) and may include support/.
SPIRE will be able to include both. orc-rt-c/ gains the same layering.

Note that support/ is a layer inside the bedrock library, not a separate
one: Error.cpp and RTTI.cpp still compile into orc-rt-bedrock.

Also folded in: bedrock/sps-ci/ -> bedrock/sps/ in both include/ and
lib/; include guards derived from each header's path, as LLVM does
(ORC_RT_SUPPORT_ERROR_H); test/unit/ mirrored onto the new layout, with
cross-layer test helpers left at its root; test-target FOLDER properties

    [3 lines not shown]
DeltaFile
+0-1,194orc-rt/test/unit/SessionTest.cpp
+1,194-0orc-rt/test/unit/bedrock/SessionTest.cpp
+0-826orc-rt/include/orc-rt/bedrock/SimplePackedSerialization.h
+826-0orc-rt/include/orc-rt/support/SimplePackedSerialization.h
+0-714orc-rt/include/orc-rt/bedrock/Error.h
+714-0orc-rt/include/orc-rt/support/Error.h
+2,734-2,734236 files not shown
+16,547-16,529242 files

LLVM/project 5715274mlir/lib/Dialect/SPIRV/Transforms SPIRVConversion.cpp, mlir/test/Conversion/MemRefToSPIRV memref-to-spirv.mlir bitwidth-emulation.mlir

[mlir][SPIRV] Fix `StorageBuffer` access conversion for emulated i16 (#218693)

Follows up on commit 202ece6. In the absence of `Int16` and
`StorageBuffer16BitAccess` in the target, `i16` isn't any different from
byte & sub-byte types. As exposed by downstream smoke tests of the IREE
project, an edge case where this causes issues is a 0/1-rank memref.
Semantically:
```
memref<i16>  ->  ptr<struct<array<1 x i32>>>
```
Since the array lengths are the same in the absence of actual packing,
just the index bounds check doesn't catch this and `InBoundsAccessChain`
still gets chosen. In the end, the memref op fails to lower through the
same restriction in `MemRefToSPIRV` that the original change apparently
had to work around - only `AccessChain` is expected there.

As a more general criterion, the change just compares array the element
types and picks `AccessChain` upon mismatch.


    [6 lines not shown]
DeltaFile
+17-19mlir/lib/Dialect/SPIRV/Transforms/SPIRVConversion.cpp
+20-0mlir/test/Conversion/MemRefToSPIRV/bitwidth-emulation.mlir
+6-1mlir/test/Conversion/MemRefToSPIRV/memref-to-spirv.mlir
+43-203 files

LLVM/project fe5a382llvm/lib/MC/MCParser AsmParser.cpp

[MCParser] Fix some bound checking when scanning macro body (#219367)
DeltaFile
+5-5llvm/lib/MC/MCParser/AsmParser.cpp
+5-51 files

LLVM/project 57f293fllvm/lib/Target/X86 X86InstrPredicates.td X86InstrFragments.td, llvm/test/CodeGen/X86 adox-flags.ll adox.ll

[X86] Emit adox instead of adc for overflow add (#216609)

ADOX is like ADC but with OF instead of the CF and can only be encoded
with a pair of 32 or 64 bit regs.

Basically this applies in cases where the overflow flag is being added.
DeltaFile
+273-0llvm/test/CodeGen/X86/adox.ll
+137-0llvm/test/CodeGen/X86/adox-flags.ll
+67-0llvm/lib/Target/X86/X86ISelLowering.cpp
+32-1llvm/lib/Target/X86/X86InstrArithmetic.td
+1-0llvm/lib/Target/X86/X86InstrPredicates.td
+1-0llvm/lib/Target/X86/X86InstrFragments.td
+511-16 files

LLVM/project 7dee60allvm/lib/Transforms/Vectorize VPlanTransforms.cpp

[VPlan] Remove (X && Y) | (X && !Y) -> X combine. NFC

We have smaller combines that can take care of this now that we process recipes in a worklist
DeltaFile
+0-8llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+0-81 files

LLVM/project 7d9c222llvm/lib/Target/WebAssembly WebAssemblyInstrSIMD.td, llvm/test/CodeGen/WebAssembly simd-load-lane-offset.ll

[WebAssembly] Select lane stores for floating-point vectors (#219186)

This extends the existing integer vector lane-store patterns to the
equivalent floating-point vector types. The underlying WebAssembly
instructions are type-agnostic lane stores.

That being said I think something like `STORE_LANE_I32x4_A32` can be
misleading when dealing with floating-point vectors. (should there be a
rename or something ?)
DeltaFile
+90-0llvm/test/CodeGen/WebAssembly/simd-load-lane-offset.ll
+19-12llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
+109-122 files

LLVM/project e67a285llvm/lib/Target/WebAssembly WebAssemblyInstrSIMD.td, llvm/test/CodeGen/WebAssembly simd-offset.ll simd-load-promote-wide.ll

[WebAssembly] Fold offsets into extending SIMD loads (#219144)

I saw this TODO and realized that instead of lowering to 
```
local.get 0
i32.const 8
i32.add
v128.load64_zero 0
f64x2.promote_low_f32x4
```
We could choose 
```
local.get 0
v128.load64_zero 8
f64x2.promote_low_f32x4
```

So I used the existing WebAssembly address operand patterns when
lowering v2f32-to-v2f64 extending loads.

    [3 lines not shown]
DeltaFile
+17-31llvm/test/CodeGen/WebAssembly/simd-load-promote-wide.ll
+6-10llvm/test/CodeGen/WebAssembly/simd-offset.ll
+8-6llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
+31-473 files

LLVM/project a7831dcclang-tools-extra/clang-tidy/bugprone ImplicitWideningOfMultiplicationResultCheck.cpp, clang-tools-extra/docs ReleaseNotes.md

[Clang-Tidy] Improve `bugprone-implicit-widening-of-multiplication-result`. (#214501)

Implicit integer promotions make it a bit difficult to deduce the
correct type in the following expression:
```
std::uint64_t calc_array_size(std::uint16_t width, std::uint16_t height) {
    return width * height;
}
```

Originally, Clang-Tidy suggested to use the following code:
```
return static_cast<long long>(width) * height;
```

It is fully correct according to the C++ rules, but it makes it a bit
harder to reason for people. This change adds a more readable "FixIt"
taking into account the source type and avoid intermediate
representations.

Co-authored-by: Dmitrii Kuragin <dkuragin at adobe.com>
DeltaFile
+34-8clang-tools-extra/test/clang-tidy/checkers/bugprone/implicit-widening-of-multiplication-result-short.cpp
+13-5clang-tools-extra/clang-tidy/bugprone/ImplicitWideningOfMultiplicationResultCheck.cpp
+7-1clang-tools-extra/docs/ReleaseNotes.md
+54-143 files

LLVM/project b0d94cborc-rt/include/orc-rt/bedrock IntervalSet.h ExecutorAddress.h

[orc-rt] Fix relative paths in includes. NFC. (#219340)
DeltaFile
+2-2orc-rt/include/orc-rt/bedrock/BitmaskEnum.h
+1-1orc-rt/include/orc-rt/bedrock/IntervalSet.h
+1-1orc-rt/include/orc-rt/bedrock/ExecutorAddress.h
+1-1orc-rt/include/orc-rt/bedrock/Endian.h
+5-54 files