From e5965df287efe0dfa694609e483b55c110c7b97c Mon Sep 17 00:00:00 2001 From: Quentin Colombet Date: Fri, 30 Nov 2012 01:34:36 +0000 Subject: [PATCH] Add a test case for the new cortex-a5 switch git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@168968 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/a5.c | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 test/CodeGen/a5.c diff --git a/test/CodeGen/a5.c b/test/CodeGen/a5.c new file mode 100644 index 0000000000..b342d3578e --- /dev/null +++ b/test/CodeGen/a5.c @@ -0,0 +1,5 @@ +// RUN: %clang -target armv7-none-linux-gnueabi -mcpu=cortex-a5 -emit-llvm -S %s -o /dev/null + +int main() { + return 0; +} -- 2.50.1