[all-commits] [llvm/llvm-project] c7b34b: [mlir] Use a new constructor of ArrayRef (NFC) (#1...
Kazu Hirata via All-commits
all-commits at lists.llvm.org
Thu Jun 26 23:38:42 PDT 2025
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: c7b34b0b44aeb3560db5143435824746edeb9a06
https://github.com/llvm/llvm-project/commit/c7b34b0b44aeb3560db5143435824746edeb9a06
Author: Kazu Hirata <kazu at google.com>
Date: 2025-06-26 (Thu, 26 Jun 2025)
Changed paths:
M mlir/lib/AsmParser/AttributeParser.cpp
M mlir/lib/Target/LLVMIR/ModuleTranslation.cpp
Log Message:
-----------
[mlir] Use a new constructor of ArrayRef (NFC) (#146009)
ArrayRef now has a new constructor that takes a parameter whose type
has data() and size(). This patch migrates:
ArrayRef<T>(X.data(), X.size()
to:
ArrayRef<T>(X)
To unsubscribe from these emails, change your notification settings at https://github.com/llvm/llvm-project/settings/notifications
More information about the All-commits
mailing list