| // The LLVM Compiler Infrastructure |
| // This file is distributed under the University of Illinois Open Source |
| // License. See LICENSE.TXT for details. |
| // -*- mode:C; c-basic-offset:4; tab-width:4; intent-tabs-mode:nil; -*- |
| int main (int argc, const char * argv[]) { |
| BobTheStruct (^copyStruct)(BobTheStruct); |
| memset(&inny, 0xA5, sizeof(inny)); |
| memset(&outty, 0x2A, sizeof(outty)); |
| copyStruct = ^(BobTheStruct aBigStruct){ return aBigStruct; }; // pass-by-value intrinsically copies the argument |
| outty = copyStruct(inny); |
| printf("%s: struct wasn't copied.", argv[0]); |
| if ( (inny.ps[i] != outty.ps[i]) || (inny.qs[i] != outty.qs[i]) ) { |
| printf("%s: struct contents did not match.", argv[0]); |
| printf("%s: success\n", argv[0]); |