blob: 6264b8fcf0d84761bc00665f72535b79d707f708 (
plain)
1
2
3
4
|
// RUN: %clang -### -fseparate-named-sections %s -c 2>&1 | FileCheck -check-prefix=CHECK-OPT %s
// RUN: %clang -### -fseparate-named-sections -fno-separate-named-sections %s -c 2>&1 | FileCheck -check-prefix=CHECK-NOOPT %s
// CHECK-OPT: "-fseparate-named-sections"
// CHECK-NOOPT-NOT: "-fseparate-named-sections"
|