diff options
author | Silviu Baranga <silviu.baranga@arm.com> | 2012-09-13 15:05:10 +0000 |
---|---|---|
committer | Silviu Baranga <silviu.baranga@arm.com> | 2012-09-13 15:05:10 +0000 |
commit | b47bb94f934ec02076ce1f5c137290867dbc911f (patch) | |
tree | e2f4bc21bf1168756ca0335dcf4a970f210fb28c /llvm/test/CodeGen/ARM/a15.ll | |
parent | 24a822a5cb707bc2028789dd957e29cec9e08b36 (diff) | |
download | bcm5719-llvm-b47bb94f934ec02076ce1f5c137290867dbc911f.tar.gz bcm5719-llvm-b47bb94f934ec02076ce1f5c137290867dbc911f.zip |
This patch introduces A15 as a target in LLVM.
llvm-svn: 163803
Diffstat (limited to 'llvm/test/CodeGen/ARM/a15.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/a15.ll | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/ARM/a15.ll b/llvm/test/CodeGen/ARM/a15.ll new file mode 100644 index 00000000000..6f816c1c2c5 --- /dev/null +++ b/llvm/test/CodeGen/ARM/a15.ll @@ -0,0 +1,6 @@ +; RUN: llc < %s -mcpu=cortex-a15 | FileCheck %s + +; CHECK: a +define i32 @a(i32 %x) { + ret i32 %x; +} |