summaryrefslogtreecommitdiffstats
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
commit760e118634489e65925d42ad2d6f567bcfec653a (patch)
tree352da3d219b5e36695357c36dc461148e071d33e
parentadfa21087f6179a25c187ecc248b513a5f8c8692 (diff)
downloadbcm5719-llvm-760e118634489e65925d42ad2d6f567bcfec653a.tar.gz
bcm5719-llvm-760e118634489e65925d42ad2d6f567bcfec653a.zip
[OPENMP] Fix the test, NFC.
llvm-svn: 312296
-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