Add PPC vector bit-convert support

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26995 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-03-23 19:54:27 +00:00
parent f1d78e8335
commit dc6af72781

View File

@ -1210,6 +1210,9 @@ def : Pat<(v4i32 (PPClve_x xoaddr:$src)),
def : Pat<(v4i32 (undef)), (v4i32 (IMPLICIT_DEF_VRRC))>;
// bit_convert
def : Pat<(v4i32 (bitconvert (v4f32 VRRC:$src))), (v4i32 VRRC:$src)>;
def : Pat<(v4f32 (bitconvert (v4i32 VRRC:$src))), (v4f32 VRRC:$src)>;
// Same as above, but using a temporary. FIXME: implement temporaries :)
/*