LLVM/project e16f489llvm/lib/Target/SPIRV SPIRVUtils.cpp, llvm/test/CodeGen/SPIRV malformed-mangled-builtin-name.ll

[SPIR-V] Avoid crash on malformed mangled builtin name length (#207939)

Replace the assert on invalid length parsing with a graceful bail-out
since malformed names can potentially come from outside, it is not
necessarily always an error

All usages of `getOclOrSpirvBuiltinDemangledName` are being checked for
emptiness where it is needed anyway
DeltaFile
+15-0llvm/test/CodeGen/SPIRV/malformed-mangled-builtin-name.ll
+4-4llvm/lib/Target/SPIRV/SPIRVUtils.cpp
+19-42 files

LLVM/project 8c97a2eclang/lib/Serialization ASTReaderDecl.cpp, clang/test/PCH dllexport-ctor-closure-copy.cpp

[Clang] Fix null-pointer assertion reading CtorClosureDefaultArgs (#207917)

BuildCtorClosureDefaultArgs deliberately leaves the first default-arg
slot null for MS ABI copy-constructor closures (the closure itself
supplies that argument), and ASTWriterDecl.cpp serializes the null. But
e7924d50db0a deserialized it with cast<>, which asserts on null. This
only triggers under the MS C++ ABI, e.g. when throwing a class with a
non-trivial copy constructor by value across a PCH boundary, as in test

https://github.com/intel/llvm/blob/cb9b7b7/clang-tools-extra/clangd/test/sycl.test

Assisted by: Claude
DeltaFile
+33-0clang/test/PCH/dllexport-ctor-closure-copy.cpp
+1-1clang/lib/Serialization/ASTReaderDecl.cpp
+34-12 files

LLVM/project 132aa1fllvm/test/CodeGen/AMDGPU memory-legalizer-local-system.ll memory-legalizer-flat-agent.ll

AMDGPU: Replace tgsplit subtarget feature with attribute (#204216)

This is a per-entrypoint property and has a corresponding
assembler directive, so it should not be baked into the
subtarget. I couldn't find much documentation on what this
actually does, so the description isn't great.

Fixes #204149

Co-authored-by: Claude Opus 4.6 <noreply at anthropic.com>
DeltaFile
+96-94llvm/test/CodeGen/AMDGPU/memory-legalizer-local-system.ll
+96-94llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-agent.ll
+96-94llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-cluster.ll
+96-94llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-singlethread.ll
+96-94llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-system.ll
+96-94llvm/test/CodeGen/AMDGPU/memory-legalizer-global-singlethread.ll
+576-56443 files not shown
+2,547-2,45249 files

LLVM/project 5506a59llvm/lib/Transforms/Scalar StraightLineStrengthReduce.cpp, llvm/test/CodeGen/AMDGPU barrier-signal-wait-latency.ll asyncmark-gfx12plus.ll

[SLSR] Fix slsr gep stride delta miscompile (#204278)

Signed-off-by: feng.feng <feng.feng at iluvatar.com>
DeltaFile
+138-0llvm/test/Transforms/StraightLineStrengthReduce/slsr-gep-sext-wrap.ll
+70-1llvm/lib/Transforms/Scalar/StraightLineStrengthReduce.cpp
+37-19llvm/test/CodeGen/AMDGPU/barrier-signal-wait-latency.ll
+20-17llvm/test/CodeGen/AMDGPU/asyncmark-gfx12plus.ll
+11-12llvm/test/Transforms/StraightLineStrengthReduce/NVPTX/slsr-var-delta.ll
+276-495 files

LLVM/project 149e219clang/lib/AST/ByteCode Interp.cpp Interp.h, clang/test/AST/ByteCode cxx2a.cpp

[clang][bytecode] Add more checks for pseudo dtors (#207959)

Rename the `EndLifetimePop` op (which was only used for pseudo dtors) to
`PseudoDtor` and call `checkDestructor()` in there, so we get the full
suite of checks.
DeltaFile
+16-1clang/test/AST/ByteCode/cxx2a.cpp
+4-5clang/lib/AST/ByteCode/Interp.cpp
+3-3clang/lib/AST/ByteCode/Interp.h
+1-1clang/lib/AST/ByteCode/Opcodes.td
+1-1clang/lib/AST/ByteCode/Compiler.cpp
+25-115 files

LLVM/project 12c36c7libc/include/llvm-libc-types struct_ifreq.h, libc/src/net/linux if_indextoname.cpp if_nametoindex.cpp

[libc] Implement if_nametoindex and if_indextoname (#206082)

This patch implements if_nametoindex and if_indextoname for Linux.

Both functions work by creating a temporary AF_UNIX socket and issuing
ioctl calls (SIOCGIFINDEX and SIOCGIFNAME, respectively).

The main implementation details:
- for if_nametoindex, I check that the interface name fits within
IF_NAMESIZE before issuing the ioctl
- for if_indextoname, if the kernel returns ENODEV for an unknown index,
I map it to ENXIO to comply with POSIX requirements
- added the definition of struct ifreq to support these operations.
Similar to the other net structure definitions, I'm using an anonymous
union to avoid #defining members.

Assisted by Gemini.
DeltaFile
+71-0libc/src/net/linux/if_indextoname.cpp
+65-0libc/src/net/linux/if_nametoindex.cpp
+51-0libc/test/src/net/linux/if_indextoname_test.cpp
+44-0libc/src/net/linux/CMakeLists.txt
+42-0libc/test/src/net/linux/if_nametoindex_test.cpp
+40-0libc/include/llvm-libc-types/struct_ifreq.h
+313-021 files not shown
+585-027 files

LLVM/project b4c4fd9llvm/lib/Target/SPIRV SPIRVUtils.cpp SPIRVUtils.h

[NFC][SPIRV] Make `getVacantFunctionName` static (#207954)

The function is only used inside `SPIRVUtils.cpp`.
DeltaFile
+1-1llvm/lib/Target/SPIRV/SPIRVUtils.cpp
+0-2llvm/lib/Target/SPIRV/SPIRVUtils.h
+1-32 files

LLVM/project f8defb1llvm/lib/Target/SPIRV SPIRVUtils.cpp SPIRVUtils.h

[NFC][SPIRV] Remove dead helper `buildOpMemberDecorate(Register, MachineInstr &, ...)` (#207952)

Another dead helper.
DeltaFile
+0-12llvm/lib/Target/SPIRV/SPIRVUtils.cpp
+0-4llvm/lib/Target/SPIRV/SPIRVUtils.h
+0-162 files

LLVM/project 8f7019aclang/lib/AST/ByteCode Pointer.cpp Interp.cpp, clang/test/AST/ByteCode typeid.cpp

[clang][bytecode] Fix getting typeid pointers of struct fields (#207946)

`getDeclPtr()` will return the declaration pointer, which might be
unrelated to the pointer we actually care about.
DeltaFile
+13-0clang/test/AST/ByteCode/typeid.cpp
+1-1clang/lib/AST/ByteCode/Pointer.cpp
+1-1clang/lib/AST/ByteCode/Interp.cpp
+15-23 files

LLVM/project de348bcmlir/include/mlir/Dialect/Bufferization/IR BufferizableOpInterface.h, mlir/lib/Dialect/Arith/Transforms BufferizableOpInterfaceImpl.cpp

[NFC][mlir][bufferization] Align alloc/memcpy/cast options hooks to the rest (#206966)

There are three hooks that have a different, more complicated API than
the other ones: allocationFn, memCpyFn, castFn. All three are called via
"helper" functions that check whether the hooks are set to call them and
fall back to default implementations otherwise.

Other hooks (e.g. unknownTypeConverterFn) in the bufferization options
have a different "API": they are always set to some default
implementation and can be overwritten by the user. This is a simpler API
overall and seems it can be universal.

Note for LLVM integration: BufferizationOptions::{createAlloc,
createMemCpy, createCast} functions are "replaced" with direct calls to
the underlying std::function objects. At any call-site that relied on
any of the removed APIs, a call to the respective hook should now be
used instead. The exception is the `allocationFn` hook which needs an
explicit "bufferAlignment" parameter. Beforehand, it was implicitly
taken from BufferizationOptions::bufferAlignment field, so a

    [3 lines not shown]
DeltaFile
+31-43mlir/lib/Dialect/Bufferization/IR/BufferizableOpInterface.cpp
+9-17mlir/include/mlir/Dialect/Bufferization/IR/BufferizableOpInterface.h
+11-12mlir/lib/Dialect/Bufferization/IR/BufferizationOps.cpp
+4-4mlir/lib/Dialect/Tensor/Transforms/BufferizableOpInterfaceImpl.cpp
+2-4mlir/lib/Dialect/Arith/Transforms/BufferizableOpInterfaceImpl.cpp
+2-2mlir/lib/Dialect/Bufferization/Transforms/Bufferize.cpp
+59-822 files not shown
+61-848 files

LLVM/project 4db63eelibc/hdr inet-address-macros.h, libc/src/__support/net address.cpp

[libc] Add inet_ntop (#204143)

The function converts from IPv4/6 addresses to their string forms. The
complication comes from the v6 part due to address compression and
v4-mapping.

The traditional implementation of this is to sprintf the address into a
temporary buffer. We cannot do that here due to the ban on calling other
entry points. Using the lower-level constructs is possible, but a
straight forward application of IntegerToString does not result in
particularly impressive performance: 50%-100% slower than what's in this
patch (and slower than glibc). It also doesn't make the code much
smaller as the majority of it is dedicated to v6 compression.

The IPv6 implementation uses a temporary buffer, but it also has a
fast-path which skips the buffer if its size is guaranteed to be
sufficient. The IPv4 implementation also has a fast path, but the
fallback here is to compute the precise length of the string instead
(the buffer option was slower and IPv4 makes it easier to compute the

    [10 lines not shown]
DeltaFile
+297-0libc/test/src/arpa/inet/inet_ntop_test.cpp
+163-1libc/src/__support/net/address.cpp
+53-0libc/src/arpa/inet/inet_ntop.cpp
+27-0libc/hdr/inet-address-macros.h
+27-0libc/src/arpa/inet/inet_ntop.h
+22-0libc/src/arpa/inet/CMakeLists.txt
+589-18 files not shown
+647-214 files

LLVM/project 5d2a7c6llvm/lib/Target/AArch64 AArch64RegisterInfo.td

fixup! Address CR comments
DeltaFile
+10-19llvm/lib/Target/AArch64/AArch64RegisterInfo.td
+10-191 files

LLVM/project de4f258llvm/lib/Target/AArch64 AArch64RegisterInfo.td, llvm/utils/TableGen/Common CodeGenRegisters.cpp

fixup! implement Carol's suggestion
DeltaFile
+5-6llvm/lib/Target/AArch64/AArch64RegisterInfo.td
+1-10llvm/utils/TableGen/Common/CodeGenRegisters.cpp
+6-162 files

LLVM/project 219d634llvm/lib/Target/AArch64 AArch64RegisterInfo.td, llvm/lib/Target/AArch64/AsmParser AArch64AsmParser.cpp

fixup! Carol's suggestion
DeltaFile
+20-3llvm/lib/Target/AArch64/AArch64RegisterInfo.td
+16-4llvm/utils/TableGen/Common/CodeGenRegisters.cpp
+16-2llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
+13-0llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp
+65-94 files

LLVM/project 5f93ed5llvm/lib/Target/AArch64 AArch64RegisterInfo.td SMEInstrFormats.td, llvm/lib/Target/AArch64/AsmParser AArch64AsmParser.cpp

fixup! Address more CR comments
DeltaFile
+6-8llvm/lib/Target/AArch64/AArch64RegisterInfo.td
+10-1llvm/utils/TableGen/Common/CodeGenRegisters.cpp
+2-2llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
+1-1llvm/lib/Target/AArch64/SMEInstrFormats.td
+19-124 files

LLVM/project 3226a44llvm/lib/Target/AArch64 AArch64RegisterInfo.td SMEInstrFormats.td, llvm/lib/Target/AArch64/AsmParser AArch64AsmParser.cpp

[AArch64][llvm] Restrict luti6 (4 regs, 8-bit) to 0 <= Zn <= 7

The `luti6` instruction (table, four registers, 8-bit) should only
allow `0 <= Zn <= 7`, since there's only 3 bits. It actually allows:
```
   luti6 { z0.b - z3.b }, zt0, { z8 - z10 }
```
which produces a duplicate encoding to the following:
```
   luti6 { z0.b - z3.b }, zt0, { z0 - z2 }
```

Fix tablegen to ensure Zn is only allowed in correct range of 0 to 7.
DeltaFile
+15-0llvm/lib/Target/AArch64/AArch64RegisterInfo.td
+5-0llvm/test/MC/AArch64/SME2p3/luti6-diagnostics.s
+4-0llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
+1-1llvm/lib/Target/AArch64/SMEInstrFormats.td
+25-14 files

LLVM/project 38a4eefllvm/lib/Target/AMDGPU SIFrameLowering.cpp, llvm/test/CodeGen/AMDGPU whole-wave-functions.ll whole-wave-functions-pei.mir

[AMDGPU] Save entry EXEC in whole-wave prologue with no WWM spills (#207924)

PR #207781 replaced the prologue S_XOR_SAVEEXEC (which set EXEC to
~entryEXEC) with a plain S_MOV EXEC, -1, but dropped the save of the
entry EXEC that the return restores from, leaving an undefined register
read

se S_OR_SAVEEXEC to both save entry EXEC and set EXEC to -1
DeltaFile
+5-5llvm/test/CodeGen/AMDGPU/whole-wave-functions.ll
+6-2llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
+1-1llvm/test/CodeGen/AMDGPU/whole-wave-functions-pei.mir
+12-83 files

LLVM/project 7b4fd87libcxx/docs/Status Cxx23Issues.csv

[libc++] Mark LWG3585 as resolved (#207717)

- Close: https://github.com/llvm/llvm-project/issues/104934.
- Commit:
https://github.com/llvm/llvm-project/commit/0d3d8de014f1012dd0b2c2c077099cf6face44e5
- Test:
https://github.com/llvm/llvm-project/blob/52271a5c11f6abde1fa1221db304212b5eb8ec7c/libcxx/test/std/utilities/variant/variant.variant/variant.assign/copy.pass.cpp#L29-L34
DeltaFile
+1-1libcxx/docs/Status/Cxx23Issues.csv
+1-11 files

LLVM/project baddc8flldb/test/API/tools/lldb-dap/launch TestDAP_launch_extra_launch_commands.py TestDAP_launch_commands.py

[lldb-dap] Migrate DAP launch tests (#207023)

Migrate all the tests in `lldb-dap/launch` base directory only. Fixes
any grammar if needed.
DeltaFile
+49-52lldb/test/API/tools/lldb-dap/launch/TestDAP_launch_extra_launch_commands.py
+47-41lldb/test/API/tools/lldb-dap/launch/TestDAP_launch_commands.py
+30-28lldb/test/API/tools/lldb-dap/launch/TestDAP_launch_environment_with_object.py
+30-25lldb/test/API/tools/lldb-dap/launch/TestDAP_launch_failing_launch_commands.py
+27-21lldb/test/API/tools/lldb-dap/launch/TestDAP_launch_debuggerRoot.py
+25-22lldb/test/API/tools/lldb-dap/launch/TestDAP_launch_environment_with_array.py
+208-18917 files not shown
+498-39623 files

LLVM/project 98a83daflang/lib/Optimizer/Transforms FIRToMemRef.cpp, flang/test/Transforms/FIRToMemRef emboxed-slice-non-unit-stride-non-unit-lb.mlir emboxed-slice-rank-reduction-nonprefix.mlir

Review comments: non-unit stride
DeltaFile
+63-40flang/lib/Optimizer/Transforms/FIRToMemRef.cpp
+69-0flang/test/Transforms/FIRToMemRef/emboxed-slice-non-unit-stride-non-unit-lb.mlir
+58-0flang/test/Transforms/FIRToMemRef/emboxed-slice-rank-reduction-nonprefix.mlir
+10-7flang/test/Transforms/FIRToMemRef/emboxed-slice-rank-reduction.mlir
+8-4flang/test/Transforms/FIRToMemRef/emboxed-slice-array-coor.mlir
+8-4flang/test/Transforms/FIRToMemRef/emboxed-slice-stride.mlir
+216-556 files

LLVM/project ac60c83llvm/test/tools/llvm-mca/AArch64/Cortex C1Ultra-sve-sme-instructions.s C1Ultra-streaming-cme-instructions.s, llvm/test/tools/llvm-mca/AArch64/Inputs sve-sme-instructions.s streaming-cme-instructions.s

[AArch64] llvm-mca C1-Ultra tests: SVE instructions added by SME when not streaming [NFC] (#207948)

In the C1-Ultra llvm-mca test, moves some instructions that were
incorrectly in the test file for "Instructions available with no SME but
will be sent to CME when in streaming SVE mode" into a file specifically
for instruction that are "SVE instructions added by SME and available
when not in Streaming SVE mode".

This is in preparation for forthcoming C1-Nano SME support to the
scheduling model that currently has no information about these
instruction due to lack of information in the C1-Nano SWOG.

This change is currently NFC because the C1-Ultra is still running the
the same tests, just from different test files.
DeltaFile
+71-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-sve-sme-instructions.s
+2-14llvm/test/tools/llvm-mca/AArch64/Cortex/C1Ultra-streaming-cme-instructions.s
+5-0llvm/test/tools/llvm-mca/AArch64/Inputs/sve-sme-instructions.s
+0-3llvm/test/tools/llvm-mca/AArch64/Inputs/streaming-cme-instructions.s
+78-174 files

LLVM/project f569fbdllvm/test/CodeGen/AMDGPU target-cpu.ll

AMDGPU: Rewrite target-cpu test for new subarches

The function subtargets should now be a valid subtarget for
the top-level subarch.
DeltaFile
+52-74llvm/test/CodeGen/AMDGPU/target-cpu.ll
+52-741 files

LLVM/project f606415llvm/unittests/CodeGen AMDGPUMetadataTest.cpp, llvm/unittests/CodeGen/GlobalISel GISelMITest.cpp

AMDGPU: Migrate unittests to subarch triples

Replace specifying a processor name with the triple
subarch.

The register-limit helpers in AMDGPUUnitTests.cpp that enumerate every
valid CPU via fillValidArchListAMDGCN still pass the CPU explicitly, as
does the MC Disassembler smoke test (its C disassembler API derives the
subtarget from the CPU, not the triple subarch).

Co-authored-by: Claude (Opus 4.8) <noreply at anthropic.com>
DeltaFile
+6-6llvm/unittests/MC/AMDGPU/DwarfRegMappings.cpp
+6-6llvm/unittests/Target/AMDGPU/DwarfRegMappings.cpp
+3-3llvm/unittests/CodeGen/AMDGPUMetadataTest.cpp
+2-2llvm/unittests/MIR/MachineMetadata.cpp
+2-2llvm/unittests/Target/AMDGPU/AMDGPUUnitTests.cpp
+2-2llvm/unittests/CodeGen/GlobalISel/GISelMITest.cpp
+21-2110 files not shown
+33-3316 files

LLVM/project 60cda03clang/lib/Basic OffloadArch.cpp, clang/lib/Driver Driver.cpp

clang: Start using new amdgpu subarch triples

Fixup invocations using --target=amdgcn + -mcpu to introduce
the subarch in the triple.

For offload toolchains, a single toolchain is constructed for the
top level amdgpu architecture, and the effective triple is used for
target specific tool invocations.

The specifics of the resource directory layout are tbd. This does
try to find resources in the subarch named directory. The paths
are searched at toolchain creation time, so that does not work
when there are multiple subarches.

Fixes #154925
DeltaFile
+234-2clang/lib/Basic/OffloadArch.cpp
+59-59clang/test/Driver/offload-arch-translation-amdgpu.cu
+43-43clang/test/Driver/hip-phases.hip
+33-33clang/test/Driver/hip-binding.hip
+49-15clang/lib/Driver/ToolChains/CommonArgs.cpp
+43-12clang/lib/Driver/Driver.cpp
+461-164103 files not shown
+1,251-491109 files

LLVM/project 130138aclang/lib/Basic/Targets AMDGPU.h AMDGPU.cpp, clang/test/Misc/target-invalid-cpu-note amdgcn.c

clang/AMDGPU: Validate -target-cpu in cc1 is valid for the subarch

Restrict the reported list of valid target-cpus based on the triple's
subarch. This is more consistent with how other targets validate the
target CPU name. Currently we have split handling validating the target
name for the triple in both the driver and here. The driver based diagnostic
seems to be an amdgpu-ism in 2 different places (though there is one arm
validation emitting the same diagnostic). In the future we could probably
drop those.
DeltaFile
+55-0clang/test/Misc/target-invalid-cpu-note/amdgcn.c
+6-5clang/lib/Basic/Targets/AMDGPU.h
+1-1clang/lib/Basic/Targets/AMDGPU.cpp
+62-63 files

LLVM/project 0aece84llvm/test/CodeGen/AMDGPU directive-amdgcn-target-legacy-triples.ll directive-amdgcn-target.ll

AMDGPU: Migrate target id tests to use new subarch triples
DeltaFile
+239-0llvm/test/CodeGen/AMDGPU/directive-amdgcn-target-legacy-triples.ll
+0-239llvm/test/CodeGen/AMDGPU/directive-amdgcn-target.ll
+11-11llvm/test/CodeGen/AMDGPU/tid-mul-func-xnack-all-off.ll
+12-10llvm/test/CodeGen/AMDGPU/target-id-xnack-always-on.ll
+11-11llvm/test/CodeGen/AMDGPU/tid-mul-func-xnack-all-any.ll
+11-11llvm/test/CodeGen/AMDGPU/tid-mul-func-xnack-all-not-supported.ll
+284-2829 files not shown
+380-37815 files

LLVM/project dcc3cd2clang/lib/Driver/ToolChains CommonArgs.cpp, clang/test/Driver amdgpu-mcpu.cl hip-sanitize-options.hip

clang/AMDGPU: Stop passing redundant -target-cpu to cc1

Now that the exact target is encoded in the triple's subarch field,
-target-cpu is redundant. This avoids polluting the resultant IR with
unwanted "target-cpu" attributes. The net result is the desired codegen
when compiling libraries for a major subarch and linking it into a
program compiled for a specific arch. e.g., compiling for "gfx9-generic"
would pollute the IR with "target-cpu"="gfx9-generic", so codegen
would ultimately be performed for the generic target even after
linking into the concrete gfx9 cpu. The specialization will now be
achieved by merging the triples without the linker or optimization
passes needing to fixup function attributes.
DeltaFile
+62-62clang/test/Driver/amdgpu-mcpu.cl
+26-26clang/test/Driver/hip-sanitize-options.hip
+20-10clang/lib/Driver/ToolChains/CommonArgs.cpp
+12-16clang/test/Driver/hip-rdc-device-only.hip
+24-0clang/test/Preprocessor/amdgpu-subarch-cc1-target-cpu.cl
+10-10clang/test/Driver/amdgpu-xnack-sramecc-flags.c
+154-12427 files not shown
+214-21133 files

LLVM/project 0af9c8bllvm/docs AMDGPUUsage.rst

move table
DeltaFile
+119-118llvm/docs/AMDGPUUsage.rst
+119-1181 files

LLVM/project 081fb14llvm/docs AMDGPUUsage.rst, llvm/lib/TargetParser AMDGPUTargetParser.cpp Triple.cpp

AMDGPU: Introduce amdgpu triple arch

Move towards using the triple for representing incompatible
ISA changes. Use the subarch field to represent the various
incompatible cases. Previously we pretended a single triple arch
was universally compatible, and only distinguished by function
level subtargets. Move towards using distinct triples to enable
more sophisticated toolchain handling in the future, like proper
runtime library linking.

Introduce a new subarch per unique ISA, but also introduce
"major subarches" which are compatible by a set of covered
minor ISA versions. These map to the existing generic targets.
There are a few placeholder subarch entries, which currently
have missing backing generic arches for codegen.

This should be the preferred triple arch name going forward,
but is treated as an alias of amdgcn. This does not yet change
clang to emit the new triples.

    [2 lines not shown]
DeltaFile
+560-440llvm/docs/AMDGPUUsage.rst
+427-0llvm/unittests/TargetParser/TargetParserTest.cpp
+241-11llvm/lib/TargetParser/AMDGPUTargetParser.cpp
+200-12llvm/unittests/TargetParser/TripleTest.cpp
+177-0llvm/test/CodeGen/AMDGPU/target-id-from-triple.ll
+147-15llvm/lib/TargetParser/Triple.cpp
+1,752-47875 files not shown
+2,595-69481 files

LLVM/project bc5d5f3clang-tools-extra/clang-tidy/misc ThrowByValueCatchByReferenceCheck.cpp, clang-tools-extra/docs/clang-tidy/checks/bugprone throwing-static-initialization.rst unchecked-string-to-number-conversion.rst

[clang-tidy][docs] Update CERT links to current SEI URLs. NFC. (#207893)
DeltaFile
+1-3clang-tools-extra/clang-tidy/misc/ThrowByValueCatchByReferenceCheck.cpp
+1-1clang-tools-extra/docs/clang-tidy/checks/bugprone/throwing-static-initialization.rst
+1-1clang-tools-extra/docs/clang-tidy/checks/bugprone/unchecked-string-to-number-conversion.rst
+1-1clang-tools-extra/docs/clang-tidy/checks/cert/dcl50-cpp.rst
+1-1clang-tools-extra/docs/clang-tidy/checks/cert/dcl58-cpp.rst
+1-1clang-tools-extra/docs/clang-tidy/checks/cert/env33-c.rst
+6-812 files not shown
+18-2018 files