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: http://review.tizen.org/git/?a=commitdiff_plain;h=317962381a2bd6ca929bff1e8fd42271dbe85b7a;p=platform%2Fupstream%2Fllvm.git Add a test case for the new cortex-a5 switch llvm-svn: 168968 --- diff --git a/clang/test/CodeGen/a5.c b/clang/test/CodeGen/a5.c new file mode 100644 index 0000000..b342d35 --- /dev/null +++ b/clang/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; +}