diff options
author | David Edelsohn <dje.gcc@gmail.com> | 2020-07-01 18:59:39 -0400 |
---|---|---|
committer | David Edelsohn <dje.gcc@gmail.com> | 2020-07-02 16:08:02 -0400 |
commit | 6b683144d1ef2cec32c829991fe122355341cd89 (patch) | |
tree | c50c8696d233e9b63562edf9ec12dd5a95f1ba2f /gcc | |
parent | dbca7a69f276e4829354f87f2747ebff36f6090e (diff) | |
download | gcc-6b683144d1ef2cec32c829991fe122355341cd89.zip gcc-6b683144d1ef2cec32c829991fe122355341cd89.tar.gz gcc-6b683144d1ef2cec32c829991fe122355341cd89.tar.bz2 |
testsuite: ignore function not inlinable warning.
gcc/testsuite/ChangeLog
2020-07-02 David Edelsohn <dje.gcc@gmail.com>
* gcc.dg/pr26570.c: dg-prune function not inlinable warning.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.dg/pr26570.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/pr26570.c b/gcc/testsuite/gcc.dg/pr26570.c index d29bc35..89cf16c 100644 --- a/gcc/testsuite/gcc.dg/pr26570.c +++ b/gcc/testsuite/gcc.dg/pr26570.c @@ -7,3 +7,5 @@ unsigned test (unsigned a, unsigned b) return a / b; } /* { dg-missed "\[^\n\]*execution counts estimated" } */ /* { dg-prune-output "function body not available" } */ +/* Ignore inlinable warning on AIX. */ +/* { dg-prune-output "function not inlinable" } */ |