| // RUN: %clang_cc1 -no-opaque-pointers -I %S/Inputs -triple x86_64-apple-macosx -emit-llvm -O2 -disable-llvm-passes -o - %s | FileCheck %s | 
 |  | 
 | #import "nsvalue-boxed-expressions-support.h" | 
 |  | 
 | // CHECK:      [[CLASS:@.*]]        = external global %struct._class_t | 
 | // CHECK:      [[NSVALUE:@.*]]      = {{.*}}[[CLASS]]{{.*}} | 
 | // CHECK:      [[RANGE_STR:.*]]     = {{.*}}_NSRange=QQ{{.*}} | 
 | // CHECK:      [[METH:@.*]]         = private unnamed_addr constant {{.*}}valueWithBytes:objCType:{{.*}} | 
 | // CHECK:      [[VALUE_SEL:@.*]]    = {{.*}}[[METH]]{{.*}} | 
 | // CHECK:      [[POINT_STR:.*]]     = {{.*}}_NSPoint=dd{{.*}} | 
 | // CHECK:      [[SIZE_STR:.*]]      = {{.*}}_NSSize=dd{{.*}} | 
 | // CHECK:      [[RECT_STR:.*]]      = {{.*}}_NSRect={_NSPoint=dd}{_NSSize=dd}}{{.*}} | 
 | // CHECK:      [[EDGE_STR:.*]]      = {{.*}}NSEdgeInsets=dddd{{.*}} | 
 |  | 
 | // CHECK-LABEL: define{{.*}} void @doRange() | 
 | void doRange(void) { | 
 |   // CHECK:      [[LOCAL_VAR:%.*]]  = alloca %struct._NSRange{{.*}} | 
 |   // CHECK:      [[TEMP_VAR:%.*]]   = alloca %struct._NSRange{{.*}} | 
 |   // CHECK:      [[RECV_PTR:%.*]]   = load {{.*}} [[NSVALUE]] | 
 |   // CHECK:      [[TEMP_CAST:%.*]]  = bitcast %struct._NSRange* [[TEMP_VAR]]{{.*}} | 
 |   // CHECK:      [[LOCAL_CAST:%.*]] = bitcast %struct._NSRange* [[LOCAL_VAR]]{{.*}} | 
 |   // CHECK:      call void @llvm.memcpy{{.*}} [[TEMP_CAST]]{{.*}} [[LOCAL_CAST]]{{.*}} | 
 |   // CHECK:      [[PARAM_CAST:%.*]] = bitcast %struct._NSRange* [[TEMP_VAR]]{{.*}} | 
 |   // CHECK:      [[RECV:%.*]]       = bitcast %struct._class_t* [[RECV_PTR]] to i8* | 
 |   // CHECK:      [[SEL:%.*]]        = load i8*, i8** [[VALUE_SEL]] | 
 |   NSRange ns_range = { .location = 0, .length = 42 }; | 
 |   // CHECK:      call {{.*objc_msgSend.*}}(i8* noundef [[RECV]], i8* noundef [[SEL]], i8* noundef [[PARAM_CAST]], i8* noundef {{.*}}[[RANGE_STR]]{{.*}}) | 
 |   NSValue *range = @(ns_range); | 
 |   // CHECK:      ret void | 
 | } | 
 |  | 
 | // CHECK-LABEL: define{{.*}} void @doPoint() | 
 | void doPoint(void) { | 
 |   // CHECK:      [[LOCAL_VAR:%.*]]  = alloca %struct._NSPoint{{.*}} | 
 |   // CHECK:      [[TEMP_VAR:%.*]]   = alloca %struct._NSPoint{{.*}} | 
 |   // CHECK:      [[RECV_PTR:%.*]]   = load {{.*}} [[NSVALUE]] | 
 |   // CHECK:      [[TEMP_CAST:%.*]]  = bitcast %struct._NSPoint* [[TEMP_VAR]]{{.*}} | 
 |   // CHECK:      [[LOCAL_CAST:%.*]] = bitcast %struct._NSPoint* [[LOCAL_VAR]]{{.*}} | 
 |   // CHECK:      call void @llvm.memcpy{{.*}} [[TEMP_CAST]]{{.*}} [[LOCAL_CAST]]{{.*}} | 
 |   // CHECK:      [[PARAM_CAST:%.*]] = bitcast %struct._NSPoint* [[TEMP_VAR]]{{.*}} | 
 |   // CHECK:      [[RECV:%.*]]       = bitcast %struct._class_t* [[RECV_PTR]] to i8* | 
 |   // CHECK:      [[SEL:%.*]]        = load i8*, i8** [[VALUE_SEL]] | 
 |   NSPoint ns_point = { .x = 42, .y = 24 }; | 
 |   // CHECK:      call {{.*objc_msgSend.*}}(i8* noundef [[RECV]], i8* noundef [[SEL]], i8* noundef [[PARAM_CAST]], i8* noundef {{.*}}[[POINT_STR]]{{.*}}) | 
 |   NSValue *point = @(ns_point); | 
 |   // CHECK:      ret void | 
 | } | 
 |  | 
 | // CHECK-LABEL: define{{.*}} void @doSize() | 
 | void doSize(void) { | 
 |   // CHECK:      [[LOCAL_VAR:%.*]]  = alloca %struct._NSSize{{.*}} | 
 |   // CHECK:      [[TEMP_VAR:%.*]]   = alloca %struct._NSSize{{.*}} | 
 |   // CHECK:      [[RECV_PTR:%.*]]   = load {{.*}} [[NSVALUE]] | 
 |   // CHECK:      [[TEMP_CAST:%.*]]  = bitcast %struct._NSSize* [[TEMP_VAR]]{{.*}} | 
 |   // CHECK:      [[LOCAL_CAST:%.*]] = bitcast %struct._NSSize* [[LOCAL_VAR]]{{.*}} | 
 |   // CHECK:      call void @llvm.memcpy{{.*}} [[TEMP_CAST]]{{.*}} [[LOCAL_CAST]]{{.*}} | 
 |   // CHECK:      [[PARAM_CAST:%.*]] = bitcast %struct._NSSize* [[TEMP_VAR]]{{.*}} | 
 |   // CHECK:      [[RECV:%.*]]       = bitcast %struct._class_t* [[RECV_PTR]] to i8* | 
 |   // CHECK:      [[SEL:%.*]]        = load i8*, i8** [[VALUE_SEL]] | 
 |   NSSize ns_size = { .width = 42, .height = 24 }; | 
 |   // CHECK:      call {{.*objc_msgSend.*}}(i8* noundef [[RECV]], i8* noundef [[SEL]], i8* noundef [[PARAM_CAST]], i8* noundef {{.*}}[[SIZE_STR]]{{.*}}) | 
 |   NSValue *size = @(ns_size); | 
 |   // CHECK:      ret void | 
 | } | 
 |  | 
 | // CHECK-LABEL: define{{.*}} void @doRect() | 
 | void doRect(void) { | 
 |   // CHECK:      [[LOCAL_VAR:%.*]]  = alloca %struct._NSRect{{.*}} | 
 |   // CHECK:      [[TEMP_VAR:%.*]]   = alloca %struct._NSRect{{.*}} | 
 |   // CHECK:      [[RECV_PTR:%.*]]   = load {{.*}} [[NSVALUE]] | 
 |   // CHECK:      [[TEMP_CAST:%.*]]  = bitcast %struct._NSRect* [[TEMP_VAR]]{{.*}} | 
 |   // CHECK:      [[LOCAL_CAST:%.*]] = bitcast %struct._NSRect* [[LOCAL_VAR]]{{.*}} | 
 |   // CHECK:      call void @llvm.memcpy{{.*}} [[TEMP_CAST]]{{.*}} [[LOCAL_CAST]]{{.*}} | 
 |   // CHECK:      [[PARAM_CAST:%.*]] = bitcast %struct._NSRect* [[TEMP_VAR]]{{.*}} | 
 |   // CHECK:      [[RECV:%.*]]       = bitcast %struct._class_t* [[RECV_PTR]] to i8* | 
 |   // CHECK:      [[SEL:%.*]]        = load i8*, i8** [[VALUE_SEL]] | 
 |   NSPoint ns_point = { .x = 42, .y = 24 }; | 
 |   NSSize ns_size = { .width = 42, .height = 24 }; | 
 |   NSRect ns_rect = { .origin = ns_point, .size = ns_size }; | 
 |   // CHECK:      call {{.*objc_msgSend.*}}(i8* noundef [[RECV]], i8* noundef [[SEL]], i8* noundef [[PARAM_CAST]], i8*{{.*}}[[RECT_STR]]{{.*}}) | 
 |   NSValue *rect = @(ns_rect); | 
 |   // CHECK:      ret void | 
 | } | 
 |  | 
 | // CHECK-LABEL: define{{.*}} void @doNSEdgeInsets() | 
 | void doNSEdgeInsets(void) { | 
 |   // CHECK:      [[LOCAL_VAR:%.*]]  = alloca %struct.NSEdgeInsets{{.*}} | 
 |   // CHECK:      [[TEMP_VAR:%.*]]   = alloca %struct.NSEdgeInsets{{.*}} | 
 |   // CHECK:      [[RECV_PTR:%.*]]   = load {{.*}} [[NSVALUE]] | 
 |   // CHECK:      [[TEMP_CAST:%.*]]  = bitcast %struct.NSEdgeInsets* [[TEMP_VAR]]{{.*}} | 
 |   // CHECK:      [[LOCAL_CAST:%.*]] = bitcast %struct.NSEdgeInsets* [[LOCAL_VAR]]{{.*}} | 
 |   // CHECK:      call void @llvm.memcpy{{.*}} [[TEMP_CAST]]{{.*}} [[LOCAL_CAST]]{{.*}} | 
 |   // CHECK:      [[PARAM_CAST:%.*]] = bitcast %struct.NSEdgeInsets* [[TEMP_VAR]]{{.*}} | 
 |   // CHECK:      [[RECV:%.*]]       = bitcast %struct._class_t* [[RECV_PTR]] to i8* | 
 |   // CHECK:      [[SEL:%.*]]        = load i8*, i8** [[VALUE_SEL]] | 
 |   NSEdgeInsets ns_edge_insets; | 
 |   // CHECK:      call {{.*objc_msgSend.*}}(i8* noundef [[RECV]], i8* noundef [[SEL]], i8* noundef [[PARAM_CAST]], i8*{{.*}}[[EDGE_STR]]{{.*}}) | 
 |   NSValue *edge_insets = @(ns_edge_insets); | 
 |   // CHECK:      ret void | 
 | } | 
 |  | 
 | // CHECK-LABEL: define{{.*}} void @doRangeRValue()  | 
 | void doRangeRValue(void) { | 
 |   // CHECK:     [[COERCE:%.*]]          = alloca %struct._NSRange{{.*}} | 
 |   // CHECK:     [[RECV_PTR:%.*]]        = load {{.*}} [[NSVALUE]] | 
 |   // CHECK:     [[RVAL:%.*]]            = call {{.*}} @getRange() | 
 |   // CHECK:     [[COERCE_CAST:%.*]]     = bitcast %struct._NSRange* [[COERCE]]{{.*}} | 
 |   // CHECK:     [[COERCE_CAST_PTR:%.*]] = getelementptr {{.*}} [[COERCE_CAST]], {{.*}} | 
 |   // CHECK:     [[EXTR_RVAL:%.*]]       = extractvalue {{.*}} [[RVAL]]{{.*}} | 
 |   // CHECK:     store {{.*}}[[EXTR_RVAL]]{{.*}}[[COERCE_CAST_PTR]]{{.*}} | 
 |   // CHECK:     [[COERCE_CAST:%.*]]     = bitcast %struct._NSRange* [[COERCE]]{{.*}} | 
 |   // CHECK:     [[RECV:%.*]]            = bitcast %struct._class_t* [[RECV_PTR]] to i8* | 
 |   // CHECK:     [[SEL:%.*]]             = load i8*, i8** [[VALUE_SEL]] | 
 |   // CHECK:     call {{.*objc_msgSend.*}}(i8* noundef [[RECV]], i8* noundef [[SEL]], i8* noundef [[COERCE_CAST]], i8* noundef {{.*}}[[RANGE_STR]]{{.*}}) | 
 |   NSValue *range_rvalue = @(getRange()); | 
 |   // CHECK: ret void | 
 | } | 
 |  |