1 // Test this without pch. 2 // RUN: %clang_cc1 -include %S/objc_container.h -fsyntax-only -verify %s 3 4 // Test with pch. 5 // RUN: %clang_cc1 -x objective-c -emit-pch -o %t %S/objc_container.h 6 // RUN: %clang_cc1 -include-pch %t -fsyntax-only -verify %s 7 // RUN: %clang -cc1 -include-pch %t -ast-print %s | FileCheck -check-prefix=PRINT %s 8 // RUN: %clang -cc1 -include-pch %t -emit-llvm -o - %s | FileCheck -check-prefix=IR %s 9 10 // CHECK-PRINT: id oldObject = array[10]; 11 // CHECK-PRINT: array[10] = oldObject; 12 // CHECK-PRINT: oldObject = dictionary[key]; 13 // CHECK-PRINT: dictionary[key] = newObject; 14 15 // CHECK-IR: define void @all() nounwind 16 // CHECK-IR: {{call.*objc_msgSend}} 17 // CHECK-IR: {{call.*objc_msgSend}} 18 // CHECK-IR: {{call.*objc_msgSend}} 19 // CHECK-IR: {{call.*objc_msgSend}} 20 // CHECK-IR: ret void 21