mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
13 lines
144 B
C
13 lines
144 B
C
// RUN: %clang_cc1 -emit-llvm %s -o -
|
|
|
|
int test(void* i)
|
|
{
|
|
return (int)i;
|
|
}
|
|
|
|
// rdar://6093986
|
|
int test2(void) {
|
|
float x[2];
|
|
return x;
|
|
}
|
|
|