Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
llvm/lib/Target/AMDGPU/AMDGPUCtorDtorLowering.cpp | ||
---|---|---|
56 | Don't need the !GA check here any more. Alternatively you could use dyn_cast_or_null on line 55. |
llvm/lib/Target/AMDGPU/AMDGPUCtorDtorLowering.cpp | ||
---|---|---|
56 | Isn't this just being defensive about what type the initializer is? That seems wise to me, you also wouldn't need a dyn_cast otherwise. |
llvm/lib/Target/AMDGPU/AMDGPUCtorDtorLowering.cpp | ||
---|---|---|
56 | You're right, please ignore all my comments :( |
llvm/test/CodeGen/AMDGPU/lower-ctor-dtor-declaration.ll | ||
---|---|---|
2 | Don't need -filetype=asm. Also don't need -o - if you're doing redirected input |
Don't need the !GA check here any more.
Alternatively you could use dyn_cast_or_null on line 55.