PR tree-optimization/81627
[official-gcc.git] / gcc / testsuite / gcc.dg / short-compare-2.c
blobbf4e6b4bad37abac34dbec4d2ee176ab0d766b93
1 /* PR rtl-optimization/19296 */
2 /* Origin: Falk Hueffner <falk@debian.org> */
3 /* Testcase by Andrew Pinski <pinskia@gcc.gnu.org> */
5 /* { dg-do run } */
6 /* { dg-options "-O" } */
7 /* { dg-options "-O -mtune=i686" { target { { i?86-*-* x86_64-*-* } && ia32 } } } */
9 extern void abort();
11 void f(unsigned short ad)
13 if ((short) (ad - 0x4000) >= 0)
14 abort();
17 int main(void)
19 f(0xc000);
20 return 0;