]> granicus.if.org Git - llvm/commitdiff
[Attributor] FIX: Try to make bots happy
authorJohannes Doerfert <jdoerfert@anl.gov>
Wed, 21 Aug 2019 22:21:13 +0000 (22:21 +0000)
committerJohannes Doerfert <jdoerfert@anl.gov>
Wed, 21 Aug 2019 22:21:13 +0000 (22:21 +0000)
Locally the tight iterations bounds work fine but the bots seem unhappy.
Try to get green bots and some time to determine the underlying problem.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@369592 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/FunctionAttrs/align.ll
test/Transforms/FunctionAttrs/nonnull.ll
test/Transforms/FunctionAttrs/noreturn_sync.ll
test/Transforms/FunctionAttrs/read_write_returned_arguments_scc.ll

index 54dbb3614e6905e614c7f510b123c783fc07db97..eb13728764bc0faa07fa01a409009d51e3c0e3ef 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt -attributor -attributor-disable=false -attributor-max-iterations=17 -S < %s | FileCheck %s --check-prefix=ATTRIBUTOR
+; RUN: opt -attributor -attributor-disable=false -attributor-max-iterations=32 -S < %s | FileCheck %s --check-prefix=ATTRIBUTOR
 
 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
 
index 58fe0a76a3674c305ac0559ac3cb9d2d00eef12c..5d9f035a7ee9599cefd111292888ef1f2283831f 100644 (file)
@@ -1,6 +1,6 @@
 ; RUN: opt -S -functionattrs -enable-nonnull-arg-prop %s | FileCheck %s --check-prefixes=BOTH,FNATTR
 ; RUN: opt -S -passes=function-attrs -enable-nonnull-arg-prop %s | FileCheck %s --check-prefixes=BOTH,FNATTR
-; RUN: opt -attributor --attributor-disable=false -attributor-max-iterations=12 -S < %s | FileCheck %s --check-prefixes=BOTH,ATTRIBUTOR
+; RUN: opt -attributor --attributor-disable=false -attributor-max-iterations=32 -S < %s | FileCheck %s --check-prefixes=BOTH,ATTRIBUTOR
 
 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
 
index 71a9215674350d1dea23e10c3106dbd1e04b24e7..d68aaf84ad6c348008004f391e2a7ba57a68153d 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt -functionattrs -attributor -attributor-disable=false -attributor-max-iterations=7 -S < %s | FileCheck %s
+; RUN: opt -functionattrs -attributor -attributor-disable=false -attributor-max-iterations=32 -S < %s | FileCheck %s
 ;
 ; This file is the same as noreturn_async.ll but with a personality which
 ; indicates that the exception handler *cannot* catch asynchronous exceptions.
index ae18e09a4d56cf82bd53c2a115afbd69dea27d93..afc2396994001cfff363ee72c03f55cbc56479c1 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt -functionattrs -enable-nonnull-arg-prop -attributor -attributor-disable=false -attributor-max-iterations=29 -S < %s | FileCheck %s
+; RUN: opt -functionattrs -enable-nonnull-arg-prop -attributor -attributor-disable=false -attributor-max-iterations=33 -S < %s | FileCheck %s
 ;
 ; This is an evolved example to stress test SCC parameter attribute propagation.
 ; The SCC in this test is made up of the following six function, three of which