bolt/deps/llvm-18.1.8/clang/test/CodeGen/PR2413-void-address-cast-error.c
2025-02-14 19:21:04 +01:00

6 lines
125 B
C

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