From: Quentin Colombet Date: Fri, 30 Nov 2012 01:34:36 +0000 (+0000) Subject: Add a test case for the new cortex-a5 switch X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e5965df287efe0dfa694609e483b55c110c7b97c;p=clang 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 --- 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; +}