diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/analyzer/dot-output.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/analyzer/dot-output.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/analyzer/dot-output.c b/gcc/testsuite/gcc.dg/analyzer/dot-output.c new file mode 100644 index 0000000..586e144 --- /dev/null +++ b/gcc/testsuite/gcc.dg/analyzer/dot-output.c @@ -0,0 +1,33 @@ +/* Verify that the various .dot output files from the analyzer are readable + by .dot. */ + +/* { dg-require-dot "" } */ +/* { dg-additional-options "-fdump-analyzer-callgraph -fdump-analyzer-exploded-graph -fdump-analyzer-state-purge -fdump-analyzer-supergraph" } */ + +#include <stdlib.h> + +int some_call (int i, char ch) +{ + return i * i; +} + +int *test (int *buf, int n, int *out) +{ + int i; + int *result = malloc (sizeof (int) * n); + + /* A loop, to ensure we have phi nodes. */ + for (i = 0; i < n; i++) + result[i] = buf[i] + i; /* { dg-warning "possibly-NULL" "" { xfail *-*-* } } */ + /* TODO(xfail): why isn't the warning appearing? */ + + /* Example of a "'" (to test quoting). */ + *out = some_call (i, 'a'); + + return result; +} + +/* { dg-final { dg-check-dot "dot-output.c.callgraph.dot" } } */ +/* { dg-final { dg-check-dot "dot-output.c.eg.dot" } } */ +/* { dg-final { dg-check-dot "dot-output.c.state-purge.dot" } } */ +/* { dg-final { dg-check-dot "dot-output.c.supergraph.dot" } } */ |