From ccbbd2087baa43ec1fabb9556728c4406711501c Mon Sep 17 00:00:00 2001 From: Ulrich Weigand Date: Tue, 14 Oct 2014 16:46:45 +0000 Subject: [PATCH] [SystemZ] Address review comments for r219679 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@219691 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Driver/systemz-as.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Driver/systemz-as.s b/test/Driver/systemz-as.s index 154d0710ed..34ad9c41ea 100644 --- a/test/Driver/systemz-as.s +++ b/test/Driver/systemz-as.s @@ -1,8 +1,7 @@ // Make sure SystemZ defaults to using the integrated assembler // RUN: %clang -target s390x-ibm-linux -### -c %s 2>&1 \ -// RUN: | FileCheck -check-prefix=DEFAULT %s -// DEFAULT: "-cc1as"{{.*}} "-target-cpu" "z10" +// RUN: | FileCheck -check-prefix=IAS %s // RUN: %clang -target s390x-ibm-linux -integrated-as -### -c %s 2>&1 \ // RUN: | FileCheck -check-prefix=IAS %s @@ -10,5 +9,6 @@ // RUN: %clang -target s390x-ibm-linux -no-integrated-as -### -c %s 2>&1 \ // RUN: | FileCheck -check-prefix=NO-IAS %s +// NO-IAS-NOT: -cc1as // NO-IAS: "-march=z10" -- 2.40.0