Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGen / avr / objc-method.m
blobaeafb8e63466ea6cbe276630931426b206117119
1 // RUN: %clang_cc1 -triple avr -emit-llvm -fobjc-runtime=macosx %s -o /dev/null
3 __attribute__((objc_root_class))
4 @interface Foo
6 - (id)foo;
7 - (id)bar;
9 @end
11 @implementation Foo
13 - (id)foo {
14   return self;
17 - (id)bar {
18   return [self foo];
21 @end