[llvm-commits] [llvm] r142149 - /llvm/trunk/test/CodeGen/Generic/bool-vector.ll

Nadav Rotem nadav.rotem at intel.com
Sun Oct 16 12:06:06 PDT 2011


Author: nadav
Date: Sun Oct 16 14:06:06 2011
New Revision: 142149

URL: http://llvm.org/viewvc/llvm-project?rev=142149&view=rev
Log:
Remove the the test which checks the saving of a vector of booleans into memory.

The decision was to pack the bits. Currently no codegen supports this.
Currently, all of the bits in the vector are saved into the same address
in memory.

Removed:
    llvm/trunk/test/CodeGen/Generic/bool-vector.ll

Removed: llvm/trunk/test/CodeGen/Generic/bool-vector.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/Generic/bool-vector.ll?rev=142148&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/Generic/bool-vector.ll (original)
+++ llvm/trunk/test/CodeGen/Generic/bool-vector.ll (removed)
@@ -1,11 +0,0 @@
-; RUN: llc < %s
-; PR1845
-
-define void @boolVectorSelect(<4 x i1>* %boolVectorPtr) {
-Body:
-        %castPtr = bitcast <4 x i1>* %boolVectorPtr to <4 x i1>*
-        %someBools = load <4 x i1>* %castPtr, align 1           ; <<4 x i1>>
-        %internal = alloca <4 x i1>, align 16           ; <<4 x i1>*> [#uses=1]
-        store <4 x i1> %someBools, <4 x i1>* %internal, align 1
-        ret void
-}





More information about the llvm-commits mailing list