blob: cb19550dc85149980e3514ed74b6509be192eff9 [file] [log] [blame]
Andrew Lenharthf80d2f62006-04-02 21:47:07 +00001; Make sure this testcase does not use mulq
2; RUN: llvm-as < %s | llc -march=alpha | grep -i 'mul' |wc -l |grep 0
3
4implementation ; Functions:
5
6ulong %foo(ulong %x) {
7entry:
8 %tmp.1 = mul ulong %x, 5 ; <ulong> [#uses=1]
9 ret ulong %tmp.1
10}
11
12long %bar(long %x) {
13entry:
14 %tmp.1 = mul long %x, 5 ; <long> [#uses=1]
15 ret long %tmp.1
16}