[compiler-rt] 6c79095 - Revert unintentional change to compiler-rt as part of the __bit_reference revert.

Eric Christopher via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 12 00:32:21 PST 2019


Author: Eric Christopher
Date: 2019-12-12T00:31:23-08:00
New Revision: 6c79095576e0faa388dff08d16a214df1beb9190

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

LOG: Revert unintentional change to compiler-rt as part of the __bit_reference revert.

Added: 
    

Modified: 
    compiler-rt/lib/sanitizer_common/scripts/check_lint.sh

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/sanitizer_common/scripts/check_lint.sh b/compiler-rt/lib/sanitizer_common/scripts/check_lint.sh
index 8e624f6e6a77..fdd8de792dbf 100755
--- a/compiler-rt/lib/sanitizer_common/scripts/check_lint.sh
+++ b/compiler-rt/lib/sanitizer_common/scripts/check_lint.sh
@@ -55,7 +55,7 @@ run_lint() {
   FILTER=$1
   shift
   TASK_LOG=$(${MKTEMP})
-  ${CPPLINT} --quiet --filter=${FILTER} "$@" 2>$TASK_LOG
+  ${CPPLINT} --filter=${FILTER} "$@" 2>$TASK_LOG
   if [ "$?" != "0" ]; then
     cat $TASK_LOG | grep -v "Done processing" | grep -v "Total errors found" \
       | grep -v "Skipping input" >> $ERROR_LOG


        


More information about the llvm-commits mailing list