diff options
author | Andrew Lenharth <alenhar2@cs.uiuc.edu> | 2008-10-07 17:13:32 +0000 |
---|---|---|
committer | Andrew Lenharth <alenhar2@cs.uiuc.edu> | 2008-10-07 17:13:32 +0000 |
commit | d3dacd748d422c35012ff6fda988876ae33c1d6d (patch) | |
tree | 3b62e39e4a4f0a0b149c59d789980b1b0616aa9d | |
parent | 83d3e655d2e8920143f9c85ba262095ee176914d (diff) | |
download | external_llvm-d3dacd748d422c35012ff6fda988876ae33c1d6d.zip external_llvm-d3dacd748d422c35012ff6fda988876ae33c1d6d.tar.gz external_llvm-d3dacd748d422c35012ff6fda988876ae33c1d6d.tar.bz2 |
128 mul test, xfailed
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57250 91177308-0d34-0410-b5e6-96231b3b80d8
-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 +} |