Add correct NEON encodings for the "multiple single elements" form of vld.
[oota-llvm.git] / test / Transforms / InstCombine / 2009-02-04-FPBitcast.ll
index 4d7b70a1155635627e5698b3a0300a678a3a15b0..bc6a2045fa0cfc3577228631c4b749668b698c2b 100644 (file)
@@ -1,7 +1,12 @@
-; RUN: llvm-as < %s | opt -instcombine
+; RUN: opt < %s -instcombine
 ; PR3468
 
 define x86_fp80 @cast() {
        %tmp = bitcast i80 0 to x86_fp80                ; <x86_fp80> [#uses=1]
        ret x86_fp80 %tmp
 }
+
+define i80 @invcast() {
+       %tmp = bitcast x86_fp80 0xK00000000000000000000 to i80          ; <i80> [#uses=1]
+       ret i80 %tmp
+}