Skip to content

Commit 3c311b0

Browse files
committed
[test] %clang_cc1 -S: remove overridden -emit-llvm
1 parent a312dd6 commit 3c311b0

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

clang/test/CodeGen/arm64-microsoft-status-reg.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// REQUIRES: aarch64-registered-target
22

3-
// RUN: %clang_cc1 -triple arm64-windows -fms-compatibility -emit-llvm -S \
3+
// RUN: %clang_cc1 -triple arm64-windows -fms-compatibility -S \
44
// RUN: -o - %s | FileCheck %s -check-prefix CHECK-ASM
55

6-
// RUN: %clang_cc1 -triple arm64-darwin -fms-compatibility -emit-llvm -S \
6+
// RUN: %clang_cc1 -triple arm64-darwin -fms-compatibility -S \
77
// RUN: -o - %s | FileCheck %s -check-prefix CHECK-ASM
88

99
// RUN: %clang_cc1 -triple arm64-windows -fms-compatibility -emit-llvm \

clang/test/CodeGen/inline-asm-mixed-style.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// RUN: %clang_cc1 -ffreestanding -triple i386-unknown-unknown -fasm-blocks -O0 -emit-llvm -S %s -o - | FileCheck %s
2-
// RUN: %clang_cc1 -ffreestanding -triple x86_64-unknown-unknown -fasm-blocks -O0 -emit-llvm -S %s -o - | FileCheck %s
1+
// RUN: %clang_cc1 -ffreestanding -triple i386-unknown-unknown -fasm-blocks -O0 -S %s -o - | FileCheck %s
2+
// RUN: %clang_cc1 -ffreestanding -triple x86_64-unknown-unknown -fasm-blocks -O0 -S %s -o - | FileCheck %s
33
// REQUIRES: x86-registered-target
44

55
#include <immintrin.h>

clang/test/OpenMP/amdgpu_throw_trap.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// REQUIRES: amdgpu-registered-target, x86-registered-target
22

3-
// RUN: %clang_cc1 -fopenmp -triple amdgcn-amd-amdhsa -fopenmp-is-target-device %s -emit-llvm -S -Wno-openmp-target-exception -o - | FileCheck -check-prefix=DEVICE %s
4-
// RUN: %clang_cc1 -fopenmp -triple x86_64-pc-linux-gnu -fopenmp-is-target-device -fcxx-exceptions %s -emit-llvm -S -Wno-openmp-target-exception -o - | FileCheck -check-prefix=HOST %s
3+
// RUN: %clang_cc1 -fopenmp -triple amdgcn-amd-amdhsa -fopenmp-is-target-device %s -S -Wno-openmp-target-exception -o - | FileCheck -check-prefix=DEVICE %s
4+
// RUN: %clang_cc1 -fopenmp -triple x86_64-pc-linux-gnu -fopenmp-is-target-device -fcxx-exceptions %s -S -Wno-openmp-target-exception -o - | FileCheck -check-prefix=HOST %s
55
// DEVICE: s_trap
66
// DEVICE-NOT: __cxa_throw
77
// HOST: __cxa_throw

clang/test/OpenMP/nvptx_throw_trap.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// REQUIRES: nvptx-registered-target
22

3-
// RUN: %clang_cc1 -fopenmp -triple nvptx64 -fopenmp-is-target-device %s -emit-llvm -S -Wno-openmp-target-exception -o - | FileCheck -check-prefix=DEVICE %s
4-
// RUN: %clang_cc1 -fopenmp -triple x86_64-pc-linux-gnu -fopenmp-is-target-device -fcxx-exceptions %s -emit-llvm -S -Wno-openmp-target-exception -o - | FileCheck -check-prefix=HOST %s
3+
// RUN: %clang_cc1 -fopenmp -triple nvptx64 -fopenmp-is-target-device %s -S -Wno-openmp-target-exception -o - | FileCheck -check-prefix=DEVICE %s
4+
// RUN: %clang_cc1 -fopenmp -triple x86_64-pc-linux-gnu -fopenmp-is-target-device -fcxx-exceptions %s -S -Wno-openmp-target-exception -o - | FileCheck -check-prefix=HOST %s
55
// DEVICE: trap;
66
// DEVICE-NOT: __cxa_throw
77
// HOST: __cxa_throw

0 commit comments

Comments
 (0)