[llvm] [DAGCombiner] Add some very basic folds for ADDRSPACECAST (PR #127733)
Kai Nacke via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 26 12:34:26 PST 2025
================
@@ -332,9 +332,7 @@ define signext i32 @setlength() {
; CHECK: lgr [[MALLOC:[0-9]+]],3
; CHECK: basr 7,6
; CHECK: lgr [[LENGTH:[0-9]+]],3
-; CHECK: la [[ADDR:[0-9]+]],4([[MALLOC]])
-; CHECK: llgtr [[ADDR]],[[ADDR]]
----------------
redstar wrote:
I think that the X86 backend has a similar issue. They also use `addrspacecast` to cast between 64 bit and 32 bit pointers. However, with a brief look it seems they have no test case with 2 casts in the order 64 bit -> 32 bit -> 64 bit.
https://github.com/llvm/llvm-project/pull/127733
More information about the llvm-commits
mailing list