mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-13 21:05:16 +00:00
12 lines
405 B
LLVM
12 lines
405 B
LLVM
|
; RUN: llvm-as < %s | llc
|
||
|
; 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
|
||
|
}
|