[llvm-commits] [llvm] r57228 - /llvm/trunk/test/CodeGen/Alpha/add128.ll

Andrew Lenharth alenhar2 at cs.uiuc.edu
Mon Oct 6 19:30:14 PDT 2008


Author: alenhar2
Date: Mon Oct  6 21:30:13 2008
New Revision: 57228

URL: http://llvm.org/viewvc/llvm-project?rev=57228&view=rev
Log:
Add test case for ADDC ADDE expansion

Added:
    llvm/trunk/test/CodeGen/Alpha/add128.ll

Added: llvm/trunk/test/CodeGen/Alpha/add128.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/Alpha/add128.ll?rev=57228&view=auto

==============================================================================
--- llvm/trunk/test/CodeGen/Alpha/add128.ll (added)
+++ llvm/trunk/test/CodeGen/Alpha/add128.ll Mon Oct  6 21:30:13 2008
@@ -0,0 +1,10 @@
+;test for ADDC and ADDE expansion
+;
+; RUN: llvm-as < %s | llc -march=alpha -o %t.s -f
+; XFAIL: *
+
+define i128 @add128(i128 %x, i128 %y) {
+entry:
+	%tmp = add i128 %y, %x
+	ret i128 %tmp
+}





More information about the llvm-commits mailing list