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.target/] [i386/] [20000614-1.c] - Rev 318
Compare with Previous | Blame | View Log
/* { dg-do run } */ /* { dg-options "-O2" } */ void bar(char *p) { } static inline void foo (unsigned long base, unsigned char val) { val ^= (1<<2); bar (val & (1<<5) ? "1" : "2"); bar (val & (1<<4) ? "1" : "2"); bar (val & (1<<3) ? "1" : "2"); bar (val & (1<<2) ? "1" : "2"); bar (val & (1<<1) ? "1" : "2"); bar (val & (1<<0) ? "1" : "2"); asm volatile ("": :"a" (val), "d" (base)); } int main (void) { foo (23, 1); return 0; }