URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20030218-1.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
/* On H8, the predicate general_operand_src(op,mode) used to ignore mode when op is a (mem (post_inc ...)). As a result, the pattern for extendhisi2 was recognized as extendqisi2. */ extern void abort (); extern void exit (int); short *q; long foo (short *p) { long b = *p; q = p + 1; return b; } int main () { short a = 0xff00; if (foo (&a) != (long) (short) 0xff00) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log