Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / lang / objc / rdar-10967107 / main.m
blob386a458950b6f928ebcbe4a516a1a9f1588ddfc2
1 #import <Foundation/Foundation.h>
3 int main (int argc, char const *argv[])
5     NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
7         NSDate *date1 = [NSDate date];
8         CFGregorianDate cf_greg_date = CFAbsoluteTimeGetGregorianDate(CFDateGetAbsoluteTime((CFDateRef)date1), NULL);
9         CFRange cf_range = {4,4};
11     [pool release]; // Set breakpoint here.
12     return 0;