mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-12 07:40:58 +00:00
Add a test for a feature that I hope will be implemented someday
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5673 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
86ca0c1f8b
commit
fc4b9bc1b0
22
test/Transforms/Mem2Reg/DifferingTypes.ll
Normal file
22
test/Transforms/Mem2Reg/DifferingTypes.ll
Normal file
@ -0,0 +1,22 @@
|
||||
; This is a feature test. Hopefully one day this will be implemented. The
|
||||
; generated code should perform the appropriate masking operations required
|
||||
; depending on the endianness of the target...
|
||||
|
||||
; RUN: if as < %s | opt -mem2reg | dis | grep 'alloca'
|
||||
; RUN: then exit 1
|
||||
; RUN: else exit 0
|
||||
; RUN: fi
|
||||
|
||||
implementation
|
||||
|
||||
int %testfunc(int %i, sbyte %j) {
|
||||
%I = alloca int
|
||||
|
||||
store int %i, int* %I
|
||||
|
||||
%P = cast int* %I to sbyte*
|
||||
store sbyte %j, sbyte* %P
|
||||
|
||||
%t = load int* %I
|
||||
ret int %t
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user