netbsd/external/bsd/llvm/dist/clang/test/CodeGen/PR2413-void-address-cast-error.c
2014-01-15 10:53:42 +01:00

7 lines
121 B
C

// RUN: %clang_cc1 -emit-llvm %s -o -
void f()
{
void *addr;
addr = (void *)( ((long int)addr + 7L) );
}