[all-commits] [llvm/llvm-project] 14c432: [OpenMP] Add search path for llvm-strip

ChiaHungDuan via All-commits all-commits at lists.llvm.org
Mon Feb 28 15:20:44 PST 2022


  Branch: refs/heads/release/14.x
  Home:   https://github.com/llvm/llvm-project
  Commit: 14c432b6a17a9ff447f2adecff4850fb62907aee
      https://github.com/llvm/llvm-project/commit/14c432b6a17a9ff447f2adecff4850fb62907aee
  Author: Kelvin Li <kkwli0 at gmail.com>
  Date:   2022-02-28 (Mon, 28 Feb 2022)

  Changed paths:
    M clang/tools/clang-linker-wrapper/ClangLinkerWrapper.cpp

  Log Message:
  -----------
  [OpenMP] Add search path for llvm-strip

Add the build directory to the search path for llvm-strip instead
of solely relying on the PATH environment variable setting.

Reviewed By: jhuber6

Differential Revision: https://reviews.llvm.org/D118965

(cherry picked from commit 8ea4aed50a9f84d9617219ccc936c005c5f31c24)


  Commit: b29813fbbbaf222d80e422320fe67f4e3c0992be
      https://github.com/llvm/llvm-project/commit/b29813fbbbaf222d80e422320fe67f4e3c0992be
  Author: Joseph Huber <jhuber6 at vols.utk.edu>
  Date:   2022-02-28 (Mon, 28 Feb 2022)

  Changed paths:
    M clang/tools/clang-linker-wrapper/ClangLinkerWrapper.cpp

  Log Message:
  -----------
  [OpenMP] Use executable path when searching for lld

Summary:
This patch changes the ClangLinkerWrapper to use the executable path
when searching for the lld binary. Previously we relied on the program
name. Also not finding 'llvm-strip' is not considered an error anymore
because it is an optional optimization.

(cherry picked from commit 7ee8bd60f225b36623114f52103b0ecb91e2fb64)


  Commit: 4de8e56982784b4eafa7df70662129cb553a5f10
      https://github.com/llvm/llvm-project/commit/4de8e56982784b4eafa7df70662129cb553a5f10
  Author: Jessica Clarke <jrtc27 at jrtc27.com>
  Date:   2022-02-28 (Mon, 28 Feb 2022)

  Changed paths:
    M llvm/lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp
    M llvm/test/MC/RISCV/rvi-pseudos.s

  Log Message:
  -----------
  [RISCV] Fix parseBareSymbol to not double-parse top-level operators

By failing to lex the token we end up both parsing it as a binary
operator ourselves and parsing it as a unary operator when calling
parseExpression on the RHS. For plus this is harmless but for minus this
parses "foo - 4" as "foo - -4", effectively treating a top-level minus
as a plus.

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

Reviewed By: asb, MaskRay

Differential Revision: https://reviews.llvm.org/D120635

(cherry picked from commit 6aa8521fdb7a551e32927cce71ecb0c424b51955)


  Commit: 779871c3515add46508aa2901c838650eb01f2d3
      https://github.com/llvm/llvm-project/commit/779871c3515add46508aa2901c838650eb01f2d3
  Author: Chia-hung Duan <chiahungduan at google.com>
  Date:   2022-02-28 (Mon, 28 Feb 2022)

  Changed paths:
    M mlir/include/mlir/TableGen/CodeGenHelpers.h
    M mlir/tools/mlir-tblgen/CodeGenHelpers.cpp
    M mlir/tools/mlir-tblgen/RewriterGen.cpp

  Log Message:
  -----------
  [mlir-tblgen] Fix non-deterministic generating static verifier in DRR.

Use SetVector instead of DenseSet to ensure we always generate the same
name for the same function. This issue is found in
https://github.com/llvm/llvm-project/issues/53768.

Reviewed By: quinnp, rdzhabarov

Differential Revision: https://reviews.llvm.org/D120514

(cherry picked from commit d56ef5ed20c5c1380c2d97e970c8fc4d4166bdb8)


Compare: https://github.com/llvm/llvm-project/compare/453361d5ac01...779871c3515a


More information about the All-commits mailing list