Reset branch to trunk.
[official-gcc.git] / trunk / gcc / testsuite / gcc.c-torture / compile / 20030314-1.c
blob02d4fed526aec6d140763be27763647759804c33
1 /* PR optimization/8396 */
2 /* Originator: <papadopo@shfj.cea.fr> */
4 /* Verify that the tree inliner doesn't mess up the types
5 when passing the value of read-only constant arguments. */
7 static inline bar(const short int xs, const short int xe)
9 if (xe && (xs < xe))
13 void f()
15 short int xe;
17 bar(0, xe);