mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
new testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32421 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
82e8a8ffe4
commit
e629ff0be8
12
test/Transforms/ScalarRepl/union-packed.ll
Normal file
12
test/Transforms/ScalarRepl/union-packed.ll
Normal file
@ -0,0 +1,12 @@
|
||||
; RUN: llvm-upgrade < %s | llvm-as | opt -scalarrepl | llvm-dis | not grep alloca &&
|
||||
; RUN: llvm-upgrade < %s | llvm-as | opt -scalarrepl | llvm-dis | grep 'bitcast'
|
||||
|
||||
target endian = little
|
||||
|
||||
<4 x int> %test(<4 x float> %X) {
|
||||
%X_addr = alloca <4 x float>
|
||||
store <4 x float> %X, <4 x float>* %X_addr
|
||||
%X_addr = bitcast <4 x float>* %X_addr to <4 x int>*
|
||||
%tmp = load <4 x int>* %X_addr
|
||||
ret <4 x int> %tmp
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user