mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 08:11:52 +00:00
For PR1122:
Test the upgradability of nested type definitions. llvm-svn: 33534
This commit is contained in:
parent
6a31ec1259
commit
fb6b9b1efa
14
test/Assembler/2007-01-26-PR1122.ll
Normal file
14
test/Assembler/2007-01-26-PR1122.ll
Normal file
@ -0,0 +1,14 @@
|
||||
; PR1122
|
||||
; Make sure llvm-upgrade can upgrade this.
|
||||
; RUN: llvm-upgrade < %s > /dev/null
|
||||
%arraytype_Char_1 = type { int, [0 x sbyte] }
|
||||
%structtype_rpy_string = type { int, %arraytype_Char_1 }
|
||||
|
||||
%RPyString = type %structtype_rpy_string ;**doesn't work
|
||||
;%RPyString = type { int, %arraytype_Char_1 } ;**works
|
||||
|
||||
sbyte* %RPyString_AsString(%RPyString* %structstring) {
|
||||
%source1ptr = getelementptr %RPyString* %structstring, int 0, uint 1, uint 1
|
||||
%source1 = cast [0 x sbyte]* %source1ptr to sbyte*
|
||||
ret sbyte* %source1
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user