summaryrefslogtreecommitdiffstats
path: root/clang/test
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test')
-rw-r--r--clang/test/OpenMP/for_codegen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/OpenMP/for_codegen.cpp b/clang/test/OpenMP/for_codegen.cpp
index a50bcc9fc73..6b0bfc831dc 100644
--- a/clang/test/OpenMP/for_codegen.cpp
+++ b/clang/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;
}
}
OpenPOWER on IntegriCloud