aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Clement <clementval@gmail.com>2024-06-10 15:10:34 -0700
committerValentin Clement <clementval@gmail.com>2024-06-10 15:10:34 -0700
commitf3b212cd123398b563da3a9a69c2903d8b355d19 (patch)
tree66937aa23fdee14dff7fbfc07db22bb2abbbc0c5
parentfd4a7401280b68ce3d5751fb1d6a13639588e9d4 (diff)
downloadllvm-f3b212cd123398b563da3a9a69c2903d8b355d19.zip
llvm-f3b212cd123398b563da3a9a69c2903d8b355d19.tar.gz
llvm-f3b212cd123398b563da3a9a69c2903d8b355d19.tar.bz2
[flang][NFC] Remove debug printing
-rw-r--r--flang/runtime/reduce.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/flang/runtime/reduce.cpp b/flang/runtime/reduce.cpp
index 5fb2c8d..f8a5221 100644
--- a/flang/runtime/reduce.cpp
+++ b/flang/runtime/reduce.cpp
@@ -158,7 +158,6 @@ void RTDEF(ReduceInteger4Dim)(Descriptor &result, const Descriptor &array,
ReductionOperation<std::int32_t> operation, const char *source, int line,
int dim, const Descriptor *mask, const std::int32_t *identity,
bool ordered) {
- printf("dim: %d\n", dim);
Terminator terminator{source, line};
using Accumulator = ReduceAccumulator<std::int32_t>;
Accumulator accumulator{array, operation, identity, terminator};