-
Notifications
You must be signed in to change notification settings - Fork 15.5k
AMDGPU: cleanup promote-alloca-user-mult.ll test #173071
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AMDGPU: cleanup promote-alloca-user-mult.ll test #173071
Conversation
|
@llvm/pr-subscribers-backend-amdgpu Author: None (macurtis-amd) ChangesRemove unnecessary attributes in test case as requested in post-merge feedback (#172771). Full diff: https://github.com/llvm/llvm-project/pull/173071.diff 1 Files Affected:
diff --git a/llvm/test/CodeGen/AMDGPU/promote-alloca-user-mult.ll b/llvm/test/CodeGen/AMDGPU/promote-alloca-user-mult.ll
index 915e0910a5047..6cf60a5f40f76 100644
--- a/llvm/test/CodeGen/AMDGPU/promote-alloca-user-mult.ll
+++ b/llvm/test/CodeGen/AMDGPU/promote-alloca-user-mult.ll
@@ -7,8 +7,7 @@
%struct.barney = type { i8, double }
-; Function Attrs: nofree norecurse noreturn nounwind memory(readwrite, target_mem0: none, target_mem1: none)
-define amdgpu_kernel void @zot() local_unnamed_addr #0 {
+define amdgpu_kernel void @zot() {
; CHECK-LABEL: @zot(
; CHECK-NEXT: bb:
; CHECK-NEXT: [[TMP0:%.*]] = call noalias nonnull dereferenceable(64) ptr addrspace(4) @llvm.amdgcn.dispatch.ptr()
@@ -64,7 +63,4 @@ bb2: ; preds = %bb2, %bb
br label %bb2
}
-declare ptr @hoge() local_unnamed_addr #1
-
-attributes #0 = { nofree norecurse noreturn nounwind memory(readwrite, target_mem0: none, target_mem1: none) "amdgpu-agpr-alloc"="0" "amdgpu-no-cluster-id-x" "amdgpu-no-cluster-id-y" "amdgpu-no-cluster-id-z" "amdgpu-no-completion-action" "amdgpu-no-default-queue" "amdgpu-no-dispatch-id" "amdgpu-no-dispatch-ptr" "amdgpu-no-flat-scratch-init" "amdgpu-no-heap-ptr" "amdgpu-no-hostcall-ptr" "amdgpu-no-implicitarg-ptr" "amdgpu-no-lds-kernel-id" "amdgpu-no-multigrid-sync-arg" "amdgpu-no-queue-ptr" "amdgpu-no-workgroup-id-x" "amdgpu-no-workgroup-id-y" "amdgpu-no-workgroup-id-z" "amdgpu-no-workitem-id-x" "amdgpu-no-workitem-id-y" "amdgpu-no-workitem-id-z" "uniform-work-group-size"="false" }
-attributes #1 = { "uniform-work-group-size"="false" }
+declare ptr @hoge()
|
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/144/builds/42713 Here is the relevant piece of the build log for the reference |
Remove unnecessary attributes in test case as requested in post-merge feedback (#172771).