aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/ssa-fre-4.c
blob: 96738305bbcf02ce038a164d02cbd1c1908184a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* If the target returns false for TARGET_PROMOTE_PROTOTYPES, then there
   will be no casts for FRE to eliminate and the test will fail.  */
/* { dg-do compile { target i?86-*-* x86_64-*-* hppa*-*-* mips*-*-* m68k*-*-* } } */
/* { dg-options "-O -fno-tree-forwprop -fdump-tree-fre1-details" } */

/* From PR21608.  */

static inline char wrap(char f) { return f; }
char bar(char f)
{
        return wrap(f);
}

/* { dg-final { scan-tree-dump "Replaced \\\(char\\\) .*with " "fre1" } } */
/* { dg-final { cleanup-tree-dump "fre1" } } */