summaryrefslogtreecommitdiff
path: root/test/CodeGen/Thumb2/thumb2-mulhi.ll
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-08-01 00:16:10 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-08-01 00:16:10 +0000
commitb620724e614c6594e7b269b6ea7d8483947ea944 (patch)
tree9b453a3e3f9472971e4a79c679c843bb321d1f30 /test/CodeGen/Thumb2/thumb2-mulhi.ll
parent675fb65bf436b398f2ab3861b0fa05e3028a83d1 (diff)
downloadllvm-b620724e614c6594e7b269b6ea7d8483947ea944.tar.gz
llvm-b620724e614c6594e7b269b6ea7d8483947ea944.tar.bz2
llvm-b620724e614c6594e7b269b6ea7d8483947ea944.tar.xz
Fix Thumb2 function call isel. Thumb1 and Thumb2 should share the same
instructions for calls since BL and BLX are always 32-bit long and BX is always 16-bit long. Also, we should be using BLX to call external function stubs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77756 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Thumb2/thumb2-mulhi.ll')
-rw-r--r--test/CodeGen/Thumb2/thumb2-mulhi.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/Thumb2/thumb2-mulhi.ll b/test/CodeGen/Thumb2/thumb2-mulhi.ll
index f2c5233f28..7b41509f79 100644
--- a/test/CodeGen/Thumb2/thumb2-mulhi.ll
+++ b/test/CodeGen/Thumb2/thumb2-mulhi.ll
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep smull | count 1
+; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep smmul | count 1
; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep umull | count 1
define i32 @smulhi(i32 %x, i32 %y) {