From: Chandler Carruth Date: Tue, 14 Nov 2017 05:20:03 +0000 (+0000) Subject: [PM] Require a registered x86 target for this test which uses the x86 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6b37d0986544524817a9457dafa7004c709b7a61;p=clang [PM] Require a registered x86 target for this test which uses the x86 triple. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@318137 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/bounds-checking.c b/test/CodeGen/bounds-checking.c index 410afd2fba..2e6a08650d 100644 --- a/test/CodeGen/bounds-checking.c +++ b/test/CodeGen/bounds-checking.c @@ -2,6 +2,8 @@ // RUN: %clang_cc1 -fsanitize=local-bounds -fexperimental-new-pass-manager -emit-llvm -triple x86_64-apple-darwin10 %s -o - | FileCheck %s // RUN: %clang_cc1 -fsanitize=array-bounds -O -fsanitize-trap=array-bounds -emit-llvm -triple x86_64-apple-darwin10 -DNO_DYNAMIC %s -o - | FileCheck %s // RUN: %clang_cc1 -fsanitize=array-bounds -O -fsanitize-trap=array-bounds -fexperimental-new-pass-manager -emit-llvm -triple x86_64-apple-darwin10 -DNO_DYNAMIC %s -o - | FileCheck %s +// +// REQUIRES: x86-registered-target // CHECK-LABEL: @f double f(int b, int i) {