[PATCH] D81260: [AMDGPU][NFC] Skip processing intrinsics that do not become real instructions
Daniil Fukalov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jun 5 12:55:01 PDT 2020
dfukalov added a comment.
Phabricator somehow shows wrong diff after patch update. Correct diff is
- if (!CI) continue;
+ if (!CI || isa<DbgInfoIntrinsic>(CI) || CI->isLifetimeStartOrEnd())
+ continue;
There were no issues, I just noticed in debug output that that pass tries to process staff like llvm.lifetime.start
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D81260/new/
https://reviews.llvm.org/D81260
More information about the llvm-commits
mailing list