OSDN Git Service

128 mul test, xfailed
authorAndrew Lenharth <andrewl@lenharth.org>
Tue, 7 Oct 2008 17:13:32 +0000 (17:13 +0000)
committerAndrew Lenharth <andrewl@lenharth.org>
Tue, 7 Oct 2008 17:13:32 +0000 (17:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57250 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/Alpha/mul128.ll [new file with mode: 0644]

diff --git a/test/CodeGen/Alpha/mul128.ll b/test/CodeGen/Alpha/mul128.ll
new file mode 100644 (file)
index 0000000..2021638
--- /dev/null
@@ -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
+}