2013-02-20 15:22:19 +08:00
|
|
|
// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm %s -o - | FileCheck %s
|
2011-06-16 07:02:42 +08:00
|
|
|
|
2013-02-26 03:51:03 +08:00
|
|
|
// CHECK: declare i8* @objc_msgSend(i8*, i8*, ...) #1
|
2011-06-16 07:02:42 +08:00
|
|
|
void f0(id x) {
|
|
|
|
[x foo];
|
|
|
|
}
|
2013-02-20 15:22:19 +08:00
|
|
|
|
2013-02-26 03:51:03 +08:00
|
|
|
// CHECK: attributes #0 = { nounwind "target-features"={{.*}} }
|
|
|
|
// CHECK: attributes #1 = { nonlazybind }
|