[RISCV] Rename a lambda to have plural nouns to reflect that it contains a loop. NFC
[llvm-project.git] / clang / test / CodeGen / label-array-aggregate-init.c
blob4039b925f21b7bd1c9ac73a8a13d078a5c795a4a
1 // RUN: %clang_cc1 -triple x86_64-windows-msvc -emit-llvm %s -o - | FileCheck %s
3 // CHECK: @constinit = private constant [3 x ptr] [ptr blockaddress(@main, %L), ptr null, ptr null]
5 void receivePtrs(void **);
7 int main(void) {
8 L:
9 receivePtrs((void *[]){ &&L, 0, 0 });