diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-10-22 21:55:03 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-10-22 21:55:03 +0000 |
commit | db7415075dad548b248ac60f0677d8308c8d1751 (patch) | |
tree | b70b4651fc1d322c3671cf4c7322a018a8f549c4 /llvm/test/CodeGen/ARM/clz.ll | |
parent | 21eedfb5a2829c0216b31aa541ed2b538ce8424e (diff) | |
download | bcm5719-llvm-db7415075dad548b248ac60f0677d8308c8d1751.tar.gz bcm5719-llvm-db7415075dad548b248ac60f0677d8308c8d1751.zip |
FileCheck-ize a few tests.
llvm-svn: 117156
Diffstat (limited to 'llvm/test/CodeGen/ARM/clz.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/clz.ll | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/ARM/clz.ll b/llvm/test/CodeGen/ARM/clz.ll index d2235c9221c..e381e002981 100644 --- a/llvm/test/CodeGen/ARM/clz.ll +++ b/llvm/test/CodeGen/ARM/clz.ll @@ -1,8 +1,10 @@ -; RUN: llc < %s -march=arm -mattr=+v5t | grep clz +; RUN: llc < %s -march=arm -mattr=+v5t | FileCheck %s declare i32 @llvm.ctlz.i32(i32) define i32 @test(i32 %x) { - %tmp.1 = call i32 @llvm.ctlz.i32( i32 %x ) ; <i32> [#uses=1] +; CHECK: test +; CHECK: clz r0, r0 + %tmp.1 = call i32 @llvm.ctlz.i32( i32 %x ) ret i32 %tmp.1 } |