[flang-commits] [flang] f3b212c - [flang][NFC] Remove debug printing

Valentin Clement via flang-commits flang-commits at lists.llvm.org
Mon Jun 10 15:10:51 PDT 2024


Author: Valentin Clement
Date: 2024-06-10T15:10:34-07:00
New Revision: f3b212cd123398b563da3a9a69c2903d8b355d19

URL: https://github.com/llvm/llvm-project/commit/f3b212cd123398b563da3a9a69c2903d8b355d19
DIFF: https://github.com/llvm/llvm-project/commit/f3b212cd123398b563da3a9a69c2903d8b355d19.diff

LOG: [flang][NFC] Remove debug printing

Added: 
    

Modified: 
    flang/runtime/reduce.cpp

Removed: 
    


################################################################################
diff  --git a/flang/runtime/reduce.cpp b/flang/runtime/reduce.cpp
index 5fb2c8d8880e6..f8a5221a1ebf7 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};


        


More information about the flang-commits mailing list