xref: /minix3/external/bsd/llvm/dist/clang/test/Driver/compress.c (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1 // RUN: %clang -### -c -integrated-as -Wa,-compress-debug-sections %s 2>&1 | FileCheck --check-prefix=COMPRESS_DEBUG %s
2 // RUN: %clang -### -c -integrated-as -Wa,--compress-debug-sections %s 2>&1 | FileCheck --check-prefix=COMPRESS_DEBUG %s
3 // REQUIRES: zlib
4 
5 // COMPRESS_DEBUG: "-compress-debug-sections"
6 
7 // RUN: %clang -### -c -integrated-as -Wa,--compress-debug-sections -Wa,--nocompress-debug-sections %s 2>&1 | FileCheck --check-prefix=NOCOMPRESS_DEBUG %s
8 // NOCOMPRESS_DEBUG-NOT: "-compress-debug-sections"
9