summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Stellard <tstellar@redhat.com>2017-11-13 23:42:12 +0000
committerTom Stellard <tstellar@redhat.com>2017-11-13 23:42:12 +0000
commit7751fc0fb489255c904e0df675fe311bc33cbef5 (patch)
tree093326ca75f466afbdabd05fe95a3e3a724d3c03
parentccf8d1a8558739a619a29b8d0af1dbd3a8627d39 (diff)
Merging r312296:
------------------------------------------------------------------------ r312296 | abataev | 2017-08-31 16:34:33 -0700 (Thu, 31 Aug 2017) | 1 line [OPENMP] Fix the test, NFC. ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_50@318114 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/OpenMP/for_codegen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/OpenMP/for_codegen.cpp b/test/OpenMP/for_codegen.cpp
index 7d823ed205..466139cfb2 100644
--- a/test/OpenMP/for_codegen.cpp
+++ b/test/OpenMP/for_codegen.cpp
@@ -486,7 +486,7 @@ void loop_with_It(It<char> begin, It<char> end) {
void loop_with_It_plus(It<char> begin, It<char> end) {
#pragma omp for
- for (It<char> it = begin; it < end; it+=1) {
+ for (It<char> it = begin; it < end; it+=1u) {
*it = 0;
}
}