1 | // RUN: %clang_cc1 -triple x86_64-apple-darwin11 -emit-llvm -fblocks -o - %s | FileCheck %s |
---|---|
2 | |
3 | // rdar://6027699 |
4 | |
5 | void test(id x) { |
6 | // CHECK: load i8*, i8** @OBJC_SELECTOR_REFERENCES_, align 8, !invariant.load |
7 | // CHECK: @objc_msgSend |
8 | [x foo]; |
9 | } |
10 |