Fix a bug in the soft-float handling of FCOPYSIGN that Duncan noticed
[oota-llvm.git] / test / FrontendC / 2007-09-14-NegatePointer.c
1 // RUN: %llvmgcc -S %s -o - 
2 // PR1662
3
4 int foo(unsigned char *test) {
5   return 0U - (unsigned int )test;
6 }
7