summaryrefslogtreecommitdiffstats
path: root/test/OpenMP/for_codegen.cpp
diff options
context:
space:
mode:
authorAlexey Bataev <a.bataev@hotmail.com>2017-08-31 23:34:33 +0000
committerAlexey Bataev <a.bataev@hotmail.com>2017-08-31 23:34:33 +0000
commitdbd62fc14b168b7ae0b60c6002504a4feb0c83cd (patch)
tree82045f8b9dd022220e2183a64c6bc97e2a3192c4 /test/OpenMP/for_codegen.cpp
parentf66517edc412de8a32cd8d967c2027b3af2d0447 (diff)
[OPENMP] Fix the test, NFC.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@312296 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/OpenMP/for_codegen.cpp')
-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 a50bcc9fc7..6b0bfc831d 100644
--- a/test/OpenMP/for_codegen.cpp
+++ b/test/OpenMP/for_codegen.cpp
@@ -487,7 +487,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;
}
}