diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/expression_command/two-files/foo.m')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/expression_command/two-files/foo.m | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/expression_command/two-files/foo.m b/lldb/packages/Python/lldbsuite/test/expression_command/two-files/foo.m deleted file mode 100644 index 1609ebd838f..00000000000 --- a/lldb/packages/Python/lldbsuite/test/expression_command/two-files/foo.m +++ /dev/null @@ -1,28 +0,0 @@ -#import <Foundation/Foundation.h> - -NSMutableArray * -GetArray () -{ - static NSMutableArray *the_array = NULL; - if (the_array == NULL) - the_array = [[NSMutableArray alloc] init]; - return the_array; -} - -int -AddElement (char *value) -{ - NSString *element = [NSString stringWithUTF8String: value]; - int cur_elem = [GetArray() count]; - [GetArray() addObject: element]; - return cur_elem; -} - -const char * -GetElement (int idx) -{ - if (idx >= [GetArray() count]) - return NULL; - else - return [[GetArray() objectAtIndex: idx] UTF8String]; -} |