Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame^] | 1 | // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fdebugger-objc-literal -emit-llvm -o - %s | FileCheck %s |
2 | |||||
3 | int main() { | ||||
4 | id l = @'a'; | ||||
5 | l = @'a'; | ||||
6 | l = @42; | ||||
7 | l = @-42; | ||||
8 | l = @42u; | ||||
9 | l = @3.141592654f; | ||||
10 | l = @__objc_yes; | ||||
11 | l = @__objc_no; | ||||
12 | l = @{ @"name":@666 }; | ||||
13 | l = @[ @"foo", @"bar" ]; | ||||
14 | } | ||||
15 | |||||
16 | // CHECK: declare i8* @objc_msgSend(i8*, i8*, ...) nonlazybind |