1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-02-25 03:30:37 +00:00
llvm-6502/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;
}