[AMDGPU] Fix pass name of AMDGPULowerKernelAttributes. NFC.

This was obviously copy-pasted.
This commit is contained in:
Stanislav Mekhanoshin 2021-07-06 14:58:42 -07:00
parent 8d69635ed9
commit aff66b7eef
1 changed files with 3 additions and 3 deletions

View File

@ -249,9 +249,9 @@ bool AMDGPULowerKernelAttributes::runOnModule(Module &M) {
}
INITIALIZE_PASS_BEGIN(AMDGPULowerKernelAttributes, DEBUG_TYPE,
"AMDGPU IR optimizations", false, false)
INITIALIZE_PASS_END(AMDGPULowerKernelAttributes, DEBUG_TYPE, "AMDGPU IR optimizations",
false, false)
"AMDGPU Kernel Attributes", false, false)
INITIALIZE_PASS_END(AMDGPULowerKernelAttributes, DEBUG_TYPE,
"AMDGPU Kernel Attributes", false, false)
char AMDGPULowerKernelAttributes::ID = 0;