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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
CodeGenObjC
/
objc-arc-ubsan-debugging.m
blob
04c8d69a7bc398996b32656ae9e3bb822ae6c80f
1
// RUN: %clang -x objective-c -target arm64-apple-macos12.0 -fobjc-arc -std=gnu99 -O0 -fsanitize=undefined -fsanitize=nullability -c %s -v -g
2
// REQUIRES: aarch64-registered-target
3
4
@interface NSString
5
@end
6
7
struct A {
8
NSString *a;
9
};
10
11
NSString* _Nonnull foo()
12
{
13
struct A a;
14
return 0;
15
}