blob: ad7a6c3138fbaedda629777dc2940b00368260d8 [file] [log] [blame]
Ted Kremeneke65b0862012-03-06 20:05:56 +00001// 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
Andy Gibbsc6e68da2012-10-19 12:44:48 +000010// expected-no-diagnostics
11
Ted Kremeneke65b0862012-03-06 20:05:56 +000012// CHECK-PRINT: id oldObject = array[10];
13// CHECK-PRINT: array[10] = oldObject;
14// CHECK-PRINT: oldObject = dictionary[key];
15// CHECK-PRINT: dictionary[key] = newObject;
16
17// CHECK-IR: define void @all() nounwind
18// CHECK-IR: {{call.*objc_msgSend}}
19// CHECK-IR: {{call.*objc_msgSend}}
20// CHECK-IR: {{call.*objc_msgSend}}
21// CHECK-IR: {{call.*objc_msgSend}}
22// CHECK-IR: ret void