Basic smoke test for new x86mmx type.

llvm-svn: 113783
This commit is contained in:
Dale Johannesen 2010-09-13 21:01:36 +00:00
parent 8eb06f17c4
commit b1248ffe9d
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
; Basic smoke test for x86_mmx type.
; CHECK: define x86_mmx @sh16
define x86_mmx @sh16(x86_mmx %A) {
; CHECK: ret x86_mmx %A
ret x86_mmx %A
}