diff options
Diffstat (limited to 'llvm/test/CodeGen')
| -rw-r--r-- | llvm/test/CodeGen/CellSPU/stores.ll | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/llvm/test/CodeGen/CellSPU/stores.ll b/llvm/test/CodeGen/CellSPU/stores.ll index efc915ca269..7e0bf06b4e4 100644 --- a/llvm/test/CodeGen/CellSPU/stores.ll +++ b/llvm/test/CodeGen/CellSPU/stores.ll @@ -162,3 +162,12 @@ define void @store_misaligned( i32 %val, i32* %ptr) {  	store i32 %val, i32*%ptr, align 2  	ret void  } + +define void @store_v8( <8 x float> %val, <8 x float>* %ptr ) +{ +;CHECK: stq +;CHECK: stq +;CHECK: bi $lr +	store <8 x float> %val, <8 x float>* %ptr +	ret void +} | 

