1*0a6a1f1dSLionel Sambuc // RUN: %clang -### -c -integrated-as -Wa,-compress-debug-sections %s 2>&1 | FileCheck --check-prefix=COMPRESS_DEBUG %s 2*0a6a1f1dSLionel Sambuc // RUN: %clang -### -c -integrated-as -Wa,--compress-debug-sections %s 2>&1 | FileCheck --check-prefix=COMPRESS_DEBUG %s 3*0a6a1f1dSLionel Sambuc // REQUIRES: zlib 4*0a6a1f1dSLionel Sambuc 5*0a6a1f1dSLionel Sambuc // COMPRESS_DEBUG: "-compress-debug-sections" 6*0a6a1f1dSLionel Sambuc 7*0a6a1f1dSLionel Sambuc // RUN: %clang -### -c -integrated-as -Wa,--compress-debug-sections -Wa,--nocompress-debug-sections %s 2>&1 | FileCheck --check-prefix=NOCOMPRESS_DEBUG %s 8*0a6a1f1dSLionel Sambuc // NOCOMPRESS_DEBUG-NOT: "-compress-debug-sections" 9