1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 13:02:52 +02:00
llvm-mirror/test/CodeGen/Alpha/mul128.ll
Chris Lattner 284ae75537 get CodeGen/Alpha/mul128.ll to work.
llvm-svn: 57318
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
}