[llvm] [MergeFunc] Remove discardables function before writing alias or thunk. (PR #128865)
Teresa Johnson via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 26 07:55:59 PST 2025
================
@@ -43,14 +43,8 @@ define linkonce i32 @funA(i32 %x, i32 %y) {
; CHECK-NEXT: ret i32 [[SUM3]]
;
;
-; CHECK-LABEL: define linkonce i32 @funC(
-; CHECK-SAME: i32 [[TMP0:%.*]], i32 [[TMP1:%.*]]) {
-; CHECK-NEXT: [[TMP3:%.*]] = tail call i32 @[[GLOB0:[0-9]+]](i32 [[TMP0]], i32 [[TMP1]])
-; CHECK-NEXT: ret i32 [[TMP3]]
-;
-;
; CHECK-LABEL: define linkonce i32 @funB(
; CHECK-SAME: i32 [[TMP0:%.*]], i32 [[TMP1:%.*]]) {
-; CHECK-NEXT: [[TMP3:%.*]] = tail call i32 @[[GLOB0]](i32 [[TMP0]], i32 [[TMP1]])
+; CHECK-NEXT: [[TMP3:%.*]] = tail call i32 @[[GLOB0:[0-9]+]](i32 [[TMP0]], i32 [[TMP1]])
----------------
teresajohnson wrote:
Why is GLOB0 even defined as it isn't used anywhere now? Is this meant to be calling the new `@0` defined above? If so, that's presumably where GLOB0 should be defined. Ditto for the linkonce_odr.ll test below
https://github.com/llvm/llvm-project/pull/128865
More information about the llvm-commits
mailing list