blob: 44aac709d43a2da4a5c4742ee31cb9cf95c083f0 [file] [log] [blame]
Ted Kremenekebcb57a2012-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
Tim Northover931a4fe2013-08-12 12:51:05 +00007// RUN: %clang_cc1 -include-pch %t -ast-print %s | FileCheck -check-prefix=CHECK-PRINT %s
8// RUN: %clang_cc1 -include-pch %t -emit-llvm -o - %s | FileCheck -check-prefix=CHECK-IR %s
Ted Kremenekebcb57a2012-03-06 20:05:56 +00009
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +000010// expected-no-diagnostics
11
Ted Kremenekebcb57a2012-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
Bill Wendlingf7a9da02013-02-20 07:22:19 +000017// CHECK-IR: define void @all() #0
Ted Kremenekebcb57a2012-03-06 20:05:56 +000018// 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
Bill Wendlingf7a9da02013-02-20 07:22:19 +000023
Stephen Hines651f13c2014-04-23 16:59:28 -070024// CHECK-IR: attributes #0 = { nounwind {{.*}} }
25// CHECK-IR: attributes #1 = { nonlazybind }