This patch adds support for if clause to task construct in OpenMP
IRBuilder.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp | ||
---|---|---|
1453 | [style] No Almost-Always-Auto in LLVM code. Creating temporary instructions and removing them has issues. In addition to be inefficient, it creates issues if other code stores a pointer to it (eg. InsertPoint). Consider using splitBB which does not require a terminator. |
[style] No Almost-Always-Auto in LLVM code.
Creating temporary instructions and removing them has issues. In addition to be inefficient, it creates issues if other code stores a pointer to it (eg. InsertPoint). Consider using splitBB which does not require a terminator.