r257009 - Test that we're not forwarding on -g options to the non integrated assembler.

Eric Christopher via cfe-commits cfe-commits at lists.llvm.org
Wed Jan 6 17:23:13 PST 2016


Author: echristo
Date: Wed Jan  6 19:23:12 2016
New Revision: 257009

URL: http://llvm.org/viewvc/llvm-project?rev=257009&view=rev
Log:
Test that we're not forwarding on -g options to the non integrated assembler.

This is adding a test for an old fixed PR to make sure we don't regress.

Modified:
    cfe/trunk/test/Driver/gcc_forward.c

Modified: cfe/trunk/test/Driver/gcc_forward.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Driver/gcc_forward.c?rev=257009&r1=257008&r2=257009&view=diff
==============================================================================
--- cfe/trunk/test/Driver/gcc_forward.c (original)
+++ cfe/trunk/test/Driver/gcc_forward.c Wed Jan  6 19:23:12 2016
@@ -27,3 +27,9 @@
 // CHECK-NOT: "-Wall"
 // CHECK-NOT: "-Wdocumentation"
 // CHECK: "-o" "a.out"
+
+// Check that we're not forwarding -g options to the assembler
+// RUN: %clang -g -target x86_64-unknown-linux-gnu -no-integrated-as -c %s -### 2>&1 \
+// RUN:   | FileCheck --check-prefix=CHECK-ASM %s
+// CHECK-ASM: as
+// CHECK-ASM-NOT: "-g"




More information about the cfe-commits mailing list