blob: cd0f802a711e490edccc85bf92970ed21b963a56 [file] [log] [blame]
Dan Gohmanb5d12c42007-10-08 20:48:12 +00001; RUN: llvm-as < %s | llc -march=x86 | grep mul | count 3
2
3define i64 @foo(i64 %t, i64 %u) {
4 %k = mul i64 %t, %u
5 ret i64 %k
6}