[all-commits] [llvm/llvm-project] e5026f: [llvm] Remove uses of Type::getPointerTo() (NFC)
Youngsuk Kim via All-commits
all-commits at lists.llvm.org
Fri Sep 22 16:45:19 PDT 2023
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: e5026f0179f2871ba9fefc489972643324a4ba4f
https://github.com/llvm/llvm-project/commit/e5026f0179f2871ba9fefc489972643324a4ba4f
Author: Youngsuk Kim <youngsuk.kim at hpe.com>
Date: 2023-09-22 (Fri, 22 Sep 2023)
Changed paths:
M llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
M llvm/lib/IR/AutoUpgrade.cpp
M llvm/lib/Target/Hexagon/HexagonVectorCombine.cpp
M llvm/lib/Target/X86/X86TargetTransformInfo.cpp
M llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
M llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
M llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
Log Message:
-----------
[llvm] Remove uses of Type::getPointerTo() (NFC)
Partial progress towards removing in-tree uses of `getPointerTo()`,
by employing the following options:
* Drop the call entirely if the sole purpose of it is to support a no-op
bitcast (remove the no-op bitcast as well).
* Replace with `PointerType::get()`/`PointerType::getUnqual()`
This is a NFC cleanup effort.
Reviewed By: barannikov88
Differential Revision: https://reviews.llvm.org/D155232
More information about the All-commits
mailing list