mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-08 09:03:18 +00:00
8b27bdb6c2
Simply marking the symbol private conveys the desire to hide them to LLVM. llvm-svn: 221451
9 lines
259 B
Plaintext
9 lines
259 B
Plaintext
// RUN: %clang_cc1 -fobjc-runtime=macosx-fragile-10.5 -o - -emit-llvm %s | FileCheck %s
|
|
// RUN: %clang_cc1 -o - -emit-llvm %s | FileCheck %s
|
|
|
|
// CHECK: @OBJC_SELECTOR_REFERENCES_ = private externally_initialized global
|
|
|
|
void test(id x) {
|
|
[x doSomething];
|
|
}
|