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
/
Import
/
objc-arc
/
Inputs
/
cleanup-objects.m
blob
9c18399259f9d08d486fa33b316951b2aeee1e1e
1
typedef struct {
2
id x;
3
} S;
4
5
id getObj(int c, id a) {
6
// Commenting out the following line because AST importer crashes when trying
7
// to import a BlockExpr.
8
// return c ? ^{ return a; }() : ((S){ .x = a }).x;
9
return ((S){ .x = a }).x;
10
}