1 // RUN
: %clang
-### -fintegrated-as -gz=none -c %s 2>&1 | FileCheck %s --check-prefix=NOWARN
2 // NOWARN-
NOT: warning
: cannot compress debug sections
(zlib
not enabled
)
4 // RUN
: %if
!zlib
%{ %clang
-### -fintegrated-as -gz -c %s 2>&1 | FileCheck %s --check-prefix=WARN-ZLIB %}
5 // WARN-ZLIB
: warning
: cannot compress debug sections
(zlib
not enabled
)
7 // RUN
: %if
!zstd
%{ %clang
-### -fintegrated-as -gz=zstd -c %s 2>&1 | FileCheck %s --check-prefix=WARN-ZSTD %}
8 // WARN-ZSTD
: warning
: cannot compress debug sections
(zstd
not enabled
)