NoQ added inline comments.
Comment at: test/Analysis/cfg-openmp.cpp:58-67
#pragma omp distribute simd
for (int i = 0; i < 10; ++i)
argc = x;
-// CHECK-NEXT: 27: x
-// CHECK-NEXT: 28: [B1.27] (ImplicitCastExpr, LValueToRValue, int)
-// CHECK-NEXT: 29: argc
-// CHECK-NE
This revision was automatically updated to reflect the committed changes.
Closed by commit rL366068: [OPENMP]Add support for analysis of if clauses.
(authored by ABataev, committed by ).
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
Repository:
rL LLVM
CHANGES SINCE LA
ABataev marked an inline comment as done.
ABataev added a comment.
Thanks for the review!
Comment at: test/Analysis/cfg-openmp.cpp:58-67
#pragma omp distribute simd
for (int i = 0; i < 10; ++i)
argc = x;
-// CHECK-NEXT: 27: x
-// CHECK-NEXT: 28: [B1.27] (ImplicitCast
NoQ accepted this revision.
NoQ added a comment.
This revision is now accepted and ready to land.
Looks great! Thank you for improving the tests even further.
Comment at: test/Analysis/cfg-openmp.cpp:58-67
#pragma omp distribute simd
for (int i = 0; i < 10; ++i)
argc =
ABataev created this revision.
ABataev added a reviewer: NoQ.
Herald added subscribers: jdoerfert, jfb, guansong.
Herald added a project: clang.
Added support for analysis of if clauses in the OpenMP directives to be
able to check for the use of uninitialized variables.
Repository:
rC Clang
h