forked from OSchip/llvm-project
[clang] Limit clang test to ARM and AArch64 only
Summary: Limit clang/test/Frontend/gnu-mcount.c to ARM and AArch64 only. Reviewers: abdulras, honggyu.kim, rengolin Subscribers: aemerson, rengolin, cfe-commits Tags: #clang-c Differential Revision: https://reviews.llvm.org/D25842 llvm-svn: 284931
This commit is contained in:
parent
479a13c0aa
commit
66215e97e3
|
@ -1,3 +1,5 @@
|
|||
// REQUIRES: arm-registered-target,aarch64-registered-target
|
||||
|
||||
// RUN: %clang -target armv7-unknown-none-eabi -pg -S -emit-llvm -o - %s | FileCheck %s -check-prefix CHECK -check-prefix CHECK-ARM-EABI
|
||||
// RUN: %clang -target armv7-unknown-none-eabi -pg -meabi gnu -S -emit-llvm -o - %s | FileCheck %s -check-prefix CHECK -check-prefix CHECK-ARM-EABI-MEABI-GNU
|
||||
// RUN: %clang -target aarch64-unknown-none-eabi -pg -S -emit-llvm -o - %s | FileCheck %s -check-prefix CHECK -check-prefix CHECK-ARM64-EABI
|
||||
|
|
Loading…
Reference in New Issue