diff options
-rw-r--r-- | test/CodeGen/Alpha/mul128.ll | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/CodeGen/Alpha/mul128.ll b/test/CodeGen/Alpha/mul128.ll new file mode 100644 index 0000000..2021638 --- /dev/null +++ b/test/CodeGen/Alpha/mul128.ll @@ -0,0 +1,8 @@ +; RUN: llvm-as < %s | llc -march=alpha +; XFAIL: * + +define i128 @__mulvdi3(i128 %a, i128 %b) nounwind { +entry: + %r = mul i128 %a, %b + ret i128 %r +} |