mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
new testcase for SROA for stuff like "union { int*, float* }".
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30822 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6270f686b3
commit
fc1dfd4137
18
test/Transforms/ScalarRepl/union-pointer.ll
Normal file
18
test/Transforms/ScalarRepl/union-pointer.ll
Normal file
@ -0,0 +1,18 @@
|
||||
|
||||
; RUN: llvm-as < %s | opt -scalarrepl | llvm-dis | not grep alloca &&
|
||||
; RUN: llvm-as < %s | opt -scalarrepl | llvm-dis | grep 'ret sbyte'
|
||||
|
||||
target endian = little
|
||||
target pointersize = 32
|
||||
target triple = "i686-apple-darwin8.7.2"
|
||||
|
||||
implementation ; Functions:
|
||||
|
||||
sbyte* %test(short* %X) {
|
||||
%X_addr = alloca short*
|
||||
store short* %X, short** %X_addr
|
||||
%X_addr = cast short** %X_addr to sbyte**
|
||||
%tmp = load sbyte** %X_addr
|
||||
ret sbyte* %tmp
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user