mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
b0a46bfebd
llvm-svn: 110467
17 lines
309 B
Plaintext
17 lines
309 B
Plaintext
// RUN: %llvmgcc %s -S -emit-llvm
|
|
struct TFENode {
|
|
TFENode(const TFENode& inNode);
|
|
};
|
|
|
|
@interface TIconViewController
|
|
- (const TFENode&) target;
|
|
@end
|
|
|
|
void sortAllChildrenForNode(const TFENode&node);
|
|
|
|
@implementation TIconViewController
|
|
- (void) setArrangeBy {
|
|
sortAllChildrenForNode(self.target);
|
|
}
|
|
@end
|