[PATCH] D25373: Fix for Bug 30639: CGDebugInfo Null dereference with OpenMP array access
Alexey Bataev via cfe-commits
cfe-commits at lists.llvm.org
Wed Oct 12 07:51:06 PDT 2016
ABataev accepted this revision.
ABataev added a comment.
This revision is now accepted and ready to land.
LG with a nit
================
Comment at: lib/CodeGen/CGStmtOpenMP.cpp:312
+ assert(ArgLVal.getType()->isPointerType());
+ ArgAddr = this->EmitLoadOfPointer(
+ ArgAddr, ArgLVal.getType()->castAs<PointerType>());
----------------
Remove `this->`
https://reviews.llvm.org/D25373
More information about the cfe-commits
mailing list