Add test case for ADDC ADDE expansion

llvm-svn: 57228
This commit is contained in:
Andrew Lenharth 2008-10-07 02:30:13 +00:00
parent 64861a7181
commit 3b893a905e
1 changed files with 10 additions and 0 deletions

View File

@ -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
}