Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / lang / objc / modules-inline-functions / myModule.h
blobd50d0101f64565ebf7b03a5080e4251a3b4faacc
1 int notInline();
3 static __inline__ __attribute__ ((always_inline)) int isInline(int a)
5 int b = a + a;
6 return b;