11 lines · c
1// RUN: %clang_cc1 -triple x86_64-windows-msvc -emit-llvm %s -o - | FileCheck %s2 3// CHECK: @constinit = private constant [3 x ptr] [ptr blockaddress(@main, %L), ptr null, ptr null]4 5void receivePtrs(void **);6 7int main(void) {8L:9 receivePtrs((void *[]){ &&L, 0, 0 });10}11