[llvm] [llvm][ADT] Some AddressRanges.h improvements (PR #132847)
Mohammed Keyvanzadeh via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 25 10:03:53 PDT 2025
================
@@ -22,14 +22,16 @@ namespace llvm {
class AddressRange {
public:
AddressRange() {}
- AddressRange(uint64_t S, uint64_t E) : Start(S), End(E) {
+ AddressRange(const uint64_t S, const uint64_t E) : Start(S), End(E) {
----------------
VoltrexKeyva wrote:
I agree, I'll revert these changes.
https://github.com/llvm/llvm-project/pull/132847
More information about the llvm-commits
mailing list