diff options
Diffstat (limited to 'llvm/utils')
5 files changed, 6 insertions, 9 deletions
diff --git a/llvm/utils/docker/example/Dockerfile b/llvm/utils/docker/example/Dockerfile index 197716f..39990c0 100644 --- a/llvm/utils/docker/example/Dockerfile +++ b/llvm/utils/docker/example/Dockerfile @@ -10,7 +10,7 @@ # Stage 1. Check out LLVM source code and run the build. # FIXME: Replace 'ubuntu' with your base image -FROM ubuntu AS builder +FROM docker.io/ubuntu AS builder # FIXME: Change maintainer name LABEL maintainer="Maintainer <maintainer@email>" # FIXME: Install llvm/clang build dependencies here. Including compiler to @@ -29,7 +29,7 @@ RUN /tmp/scripts/build_install_llvm.sh --to /tmp/clang-install ${buildscript_arg # Stage 2. Produce a minimal release image with build results. # FIXME: Replace 'ubuntu' with your base image. -FROM ubuntu +FROM docker.io/ubuntu # FIXME: Change maintainer name. LABEL maintainer="Maintainer <maintainer@email>" # FIXME: Install all packages you want to have in your release container. diff --git a/llvm/utils/docker/nvidia-cuda/Dockerfile b/llvm/utils/docker/nvidia-cuda/Dockerfile index 035c582..f4fb3cc 100644 --- a/llvm/utils/docker/nvidia-cuda/Dockerfile +++ b/llvm/utils/docker/nvidia-cuda/Dockerfile @@ -6,7 +6,7 @@ # #===----------------------------------------------------------------------===// # Stage 1. Check out LLVM source code and run the build. -FROM nvidia/cuda:12.6.3-devel-ubuntu24.04 AS builder +FROM docker.io/nvidia/cuda:12.6.3-devel-ubuntu24.04 AS builder LABEL maintainer="LLVM Developers" # Install llvm build dependencies. RUN apt-get update && \ @@ -26,7 +26,7 @@ RUN /tmp/scripts/build_install_llvm.sh --to /tmp/clang-install ${buildscript_arg # Stage 2. Produce a minimal release image with build results. -FROM nvidia/cuda:12.6.3-devel-ubuntu24.04 +FROM docker.io/nvidia/cuda:12.6.3-devel-ubuntu24.04 LABEL maintainer="LLVM Developers" # Copy clang installation into this container. COPY --from=builder /tmp/clang-install/ /usr/local/ diff --git a/llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/fuchsia/BUILD.gn b/llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/fuchsia/BUILD.gn index ddb9848..48384ef 100644 --- a/llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/fuchsia/BUILD.gn +++ b/llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/fuchsia/BUILD.gn @@ -18,6 +18,7 @@ static_library("fuchsia") { "MultipleInheritanceCheck.cpp", "OverloadedOperatorCheck.cpp", "StaticallyConstructedObjectsCheck.cpp", + "TemporaryObjectsCheck.cpp", "TrailingReturnCheck.cpp", "VirtualInheritanceCheck.cpp", ] diff --git a/llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/zircon/BUILD.gn b/llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/zircon/BUILD.gn index c349414..8195452 100644 --- a/llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/zircon/BUILD.gn +++ b/llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/zircon/BUILD.gn @@ -10,8 +10,5 @@ static_library("zircon") { "//clang/lib/Lex", "//llvm/lib/Support", ] - sources = [ - "TemporaryObjectsCheck.cpp", - "ZirconTidyModule.cpp", - ] + sources = [ "ZirconTidyModule.cpp" ] } diff --git a/llvm/utils/profcheck-xfail.txt b/llvm/utils/profcheck-xfail.txt index 74ed172..8c41466 100644 --- a/llvm/utils/profcheck-xfail.txt +++ b/llvm/utils/profcheck-xfail.txt @@ -915,7 +915,6 @@ Transforms/InstCombine/select_frexp.ll Transforms/InstCombine/select.ll Transforms/InstCombine/select-min-max.ll Transforms/InstCombine/select-of-symmetric-selects.ll -Transforms/InstCombine/select-safe-bool-transforms.ll Transforms/InstCombine/select-safe-impliedcond-transforms.ll Transforms/InstCombine/select-safe-transforms.ll Transforms/InstCombine/select-select.ll |