diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/libcall-1.c')
-rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/libcall-1.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/libcall-1.c b/gcc/testsuite/gcc.c-torture/compile/libcall-1.c new file mode 100644 index 000000000..c1b1cfc61 --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/compile/libcall-1.c @@ -0,0 +1,14 @@ +/* Failed on ARM because rtx_varies_p didn't like the REG_EQUAL notes + generated for libcalls. + http://gcc.gnu.org/ml/gcc-patches/2004-02/msg01518.html */ +static const char digs[] = "0123456789ABCDEF"; +int __attribute__((pure)) bar(); + +int foo (int i) +{ + int len; + if (i) + return 0; + len = bar(); + return digs[len]; +} |