[DAGCombiner] Improved FMA combine support for vectors
[oota-llvm.git] / lib / Fuzzer / pull_and_push_fuzz_corpus.sh
index bd564e3dfe50a2175ed2ae38c519a73c668cfd2d..05c322c6e5bfeb3bc890ea16745b9e727b63bdad 100755 (executable)
@@ -8,10 +8,10 @@
 cd $1
 git add *
 git commit -m "fuzz test corpus"
-git pull --no-edit
+git pull --rebase --no-edit
 for((attempt=0; attempt<5; attempt++)); do
   echo GIT PUSH $1 ATTEMPT $attempt
   if $(git push); then break; fi
-  git pull --no-edit
+  git pull --rebase --no-edit
 done