Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / lang / objc / modules-incomplete / minmax.h
blobefad1201695f11eaf177e545aba1cf9897f2777a
1 #define MY_MIN(A, B) (((A) < (B)) ? (A) : (B))
2 #define MY_MAX(A, B) (((A) < (B)) ? (B) : (A))