Changeset View
Changeset View
Standalone View
Standalone View
clang/test/CodeGenObjC/arc-captured-block-var-inlined-layout.m
// RUN: %clang_cc1 -fblocks -fobjc-arc -fobjc-runtime-has-weak -triple x86_64-apple-darwin -print-ivar-layout -emit-llvm -o /dev/null %s > %t-64.layout | // RUN: %clang_cc1 -fblocks -fobjc-arc -fobjc-runtime-has-weak -triple x86_64-apple-darwin -print-ivar-layout -emit-llvm -o /dev/null %s > %t-64.layout | ||||
// RUN: FileCheck -check-prefix=CHECK -check-prefix=CHECK-64 --input-file=%t-64.layout %s | // FIXME: automatically inserted -allow-unused-prefixes=true. Is the behavior intended? | ||||
// RUN: FileCheck -allow-unused-prefixes=true -check-prefix=CHECK -check-prefix=CHECK-64 --input-file=%t-64.layout %s | |||||
// RUN: %clang_cc1 -fblocks -fobjc-arc -fobjc-runtime-has-weak -triple i386-apple-darwin -print-ivar-layout -emit-llvm -o /dev/null %s > %t-32.layout | // RUN: %clang_cc1 -fblocks -fobjc-arc -fobjc-runtime-has-weak -triple i386-apple-darwin -print-ivar-layout -emit-llvm -o /dev/null %s > %t-32.layout | ||||
// RUN: FileCheck -check-prefix=CHECK -check-prefix=CHECK-32 --input-file=%t-32.layout %s | // FIXME: automatically inserted -allow-unused-prefixes=true. Is the behavior intended? | ||||
// RUN: FileCheck -allow-unused-prefixes=true -check-prefix=CHECK -check-prefix=CHECK-32 --input-file=%t-32.layout %s | |||||
// rdar://12184410 | // rdar://12184410 | ||||
void x(id y) {} | void x(id y) {} | ||||
void y(int a) {} | void y(int a) {} | ||||
extern id opaque_id(); | extern id opaque_id(); | ||||
void f() { | void f() { | ||||
▲ Show 20 Lines • Show All 100 Lines • Show Last 20 Lines |