Skip to content

Commit

Permalink
[Clang] Un-break scan-build after integrated-cc1 change
Browse files Browse the repository at this point in the history
Differential Revision: https://reviews.llvm.org/D72982
  • Loading branch information
aganea committed Jan 21, 2020
1 parent 020041d commit a688301
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion clang/lib/Driver/Job.cpp
Expand Up @@ -373,7 +373,7 @@ int Command::Execute(ArrayRef<llvm::Optional<StringRef>> Redirects,

void CC1Command::Print(raw_ostream &OS, const char *Terminator, bool Quote,
CrashReportInfo *CrashInfo) const {
OS << " (in-process)";
OS << " (in-process)\n";
Command::Print(OS, Terminator, Quote, CrashInfo);
}

Expand Down
4 changes: 2 additions & 2 deletions clang/test/Driver/cuda-simple.cu
Expand Up @@ -5,10 +5,10 @@
// Verify that we pass -x cuda-cpp-output to compiler after
// preprocessing a CUDA file
// RUN: %clang -Werror -### -save-temps -c %s 2>&1 | FileCheck %s
// CHECK: "-cc1"
// CHECK-LABEL: "-cc1"
// CHECK: "-E"
// CHECK: "-x" "cuda"
// CHECK-NEXT: "-cc1"
// CHECK-LABEL: "-cc1"
// CHECK: "-x" "cuda-cpp-output"
//
// Verify that compiler accepts CUDA syntax with "-x cuda-cpp-output".
Expand Down
4 changes: 2 additions & 2 deletions clang/test/Driver/offloading-interoperability.c
Expand Up @@ -8,10 +8,10 @@
// RUN: %clang -no-canonical-prefixes -### -x cuda -target powerpc64le-linux-gnu -std=c++11 --cuda-gpu-arch=sm_35 -fopenmp=libomp %s 2>&1 \
// RUN: | FileCheck %s --check-prefix NO-OPENMP-FLAGS-FOR-CUDA-DEVICE
//
// NO-OPENMP-FLAGS-FOR-CUDA-DEVICE: clang{{.*}}" "-cc1" "-triple" "nvptx64-nvidia-cuda"
// NO-OPENMP-FLAGS-FOR-CUDA-DEVICE-LABEL:clang{{.*}}" "-cc1" "-triple" "nvptx64-nvidia-cuda"
// NO-OPENMP-FLAGS-FOR-CUDA-DEVICE-NOT: -fopenmp
// NO-OPENMP-FLAGS-FOR-CUDA-DEVICE-NEXT: ptxas" "-m64"
// NO-OPENMP-FLAGS-FOR-CUDA-DEVICE-NEXT: fatbinary"{{( "--cuda")?}} "-64"
// NO-OPENMP-FLAGS-FOR-CUDA-DEVICE-NEXT: clang{{.*}}" "-cc1" "-triple" "powerpc64le-unknown-linux-gnu"
// NO-OPENMP-FLAGS-FOR-CUDA-DEVICE-LABEL:clang{{.*}}" "-cc1" "-triple" "powerpc64le-unknown-linux-gnu"
// NO-OPENMP-FLAGS-FOR-CUDA-DEVICE: -fopenmp
// NO-OPENMP-FLAGS-FOR-CUDA-DEVICE-NEXT: {{ld(.exe)?"}} {{.*}}"-m" "elf64lppc"
4 changes: 2 additions & 2 deletions clang/test/Driver/option-aliases.c
Expand Up @@ -3,12 +3,12 @@
// RUN: --param=FOO --output=FOO %s 2>&1 | \
// RUN: FileCheck %s

// CHECK: "-cc1"
// CHECK-LABEL: "-cc1"
// CHECK: "-E"
// CHECK: "-U" "FOO"
// CHECK: "-U" "BAR"
// CHECK: "-o" "option-aliases.i"

// CHECK-NEXT: "-cc1"
// CHECK-LABEL: "-cc1"
// CHECK: "-S"
// CHECK: "-o" "FOO"

0 comments on commit a688301

Please sign in to comment.