From: David Green Date: Fri, 7 Dec 2018 11:16:03 +0000 (+0000) Subject: Add a AArch64 triple to tiny codemodel test. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4989c6df621c54e0975635284e20b04b52a420a9;p=clang Add a AArch64 triple to tiny codemodel test. Most other targets do not support the tiny code model. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@348582 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/codemodels.c b/test/CodeGen/codemodels.c index 30fdb25933..cc68bf2120 100644 --- a/test/CodeGen/codemodels.c +++ b/test/CodeGen/codemodels.c @@ -1,5 +1,5 @@ // RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s -check-prefix=CHECK-NOMODEL -// RUN: %clang_cc1 -emit-llvm -mcode-model tiny %s -o - | FileCheck %s -check-prefix=CHECK-TINY +// RUN: %clang_cc1 -triple aarch64-unknown-none-eabi -emit-llvm -mcode-model tiny %s -o - | FileCheck %s -check-prefix=CHECK-TINY // RUN: %clang_cc1 -emit-llvm -mcode-model small %s -o - | FileCheck %s -check-prefix=CHECK-SMALL // RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -emit-llvm -mcode-model kernel %s -o - | FileCheck %s -check-prefix=CHECK-KERNEL // RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -emit-llvm -mcode-model medium %s -o - | FileCheck %s -check-prefix=CHECK-MEDIUM