repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git]
/
clang
/
test
/
CodeGenObjC
/
initialize-function-static.m
blob
d6836db2a94ce1d206141bf8c45198d7a144a189
1
// RUN: %clang_cc1 -triple x86_64-apple-macos10.15 -emit-llvm -fobjc-arc -o - %s | FileCheck %s
2
3
@interface I
4
@end
5
6
I *i(void) {
7
static I *i = ((void *)0);
8
return i;
9
}
10
11
// CHECK-NOT: __cxa_guard_acquire
12
// CHECK-NOT: __cxa_guard_release