Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / BlocksRuntime / small-struct.c
blob618a1726c9b49cbaac4c03d1ae7f27e55e3e356c
1 //
2 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
3 // See https://llvm.org/LICENSE.txt for license information.
4 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 // -*- mode:C; c-basic-offset:4; tab-width:4; intent-tabs-mode:nil; -*-
7 // CONFIG
9 #import <stdio.h>
10 #import <stdlib.h>
11 #import <string.h>
13 typedef struct {
14 int a;
15 int b;
16 } MiniStruct;
18 int main (int argc, const char * argv[]) {
19 MiniStruct inny;
20 MiniStruct outty;
21 MiniStruct (^copyStruct)(MiniStruct);
23 memset(&inny, 0xA5, sizeof(inny));
24 memset(&outty, 0x2A, sizeof(outty));
26 inny.a = 12;
27 inny.b = 42;
29 copyStruct = ^(MiniStruct aTinyStruct){ return aTinyStruct; }; // pass-by-value intrinsically copies the argument
31 outty = copyStruct(inny);
33 if ( &inny == &outty ) {
34 printf("%s: struct wasn't copied.", argv[0]);
35 exit(1);
37 if ( (inny.a != outty.a) || (inny.b != outty.b) ) {
38 printf("%s: struct contents did not match.", argv[0]);
39 exit(1);
42 printf("%s: success\n", argv[0]);
43 return 0;