llvm-6502/test/CodeGen/Alpha/mul128.ll
Chris Lattner d2a27ee974 get CodeGen/Alpha/mul128.ll to work.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57318 91177308-0d34-0410-b5e6-96231b3b80d8
2008-10-09 04:50:56 +00:00

8 lines
150 B
LLVM

; RUN: llvm-as < %s | llc -march=alpha
define i128 @__mulvdi3(i128 %a, i128 %b) nounwind {
entry:
%r = mul i128 %a, %b
ret i128 %r
}