1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00
llvm-mirror/test/CFrontend/2007-09-14-NegatePointer.c
2007-09-15 05:46:41 +00:00

8 lines
109 B
C

// RUN: %llvmgcc -S %s -o -
// PR1662
int foo(unsigned char *test) {
return 0U - (unsigned int )test;
}