1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-25 05:52:53 +02:00
llvm-mirror/test/FrontendC/2007-09-14-NegatePointer.c

8 lines
109 B
C
Raw Normal View History

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