1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

check that casts still use zap

llvm-svn: 21283
This commit is contained in:
Andrew Lenharth 2005-04-13 13:00:16 +00:00
parent b9d2d9ac63
commit 18f93d4455

View File

@ -0,0 +1,11 @@
; Make sure this testcase codegens to the bic instruction
; RUN: llvm-as < %s | llc -march=alpha | grep 'zapnot'
implementation ; Functions:
ushort %foo(long %y) {
entry:
%tmp.1 = cast long %y to ushort ; <ushort> [#uses=1]
ret ushort %tmp.1
}