2004-11-07 06:08:43 +00:00
|
|
|
; RUN: llvm-as %s -o - | llvm-dis > %t1.ll
|
|
|
|
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
|
|
|
|
; RUN: diff %t1.ll %t2.ll
|
|
|
|
|
2001-07-08 23:23:30 +00:00
|
|
|
%struct = type { int , {float, {ubyte } } , ulong }
|
2001-12-14 16:46:53 +00:00
|
|
|
%complexty = type {int, {[4 x sbyte *], float}, double}
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
implementation
|
|
|
|
|
2001-11-26 17:02:56 +00:00
|
|
|
int "main"()
|
|
|
|
begin
|
2002-10-06 22:43:49 +00:00
|
|
|
call int %testfunction(long 0, long 1)
|
2001-11-26 17:02:56 +00:00
|
|
|
ret int 0
|
|
|
|
end
|
|
|
|
|
2002-10-06 22:43:49 +00:00
|
|
|
int "testfunction"(long %i0, long %j0)
|
2001-06-06 20:29:01 +00:00
|
|
|
begin
|
|
|
|
%array0 = malloc [4 x ubyte] ; yields {[4 x ubyte]*}:array0
|
|
|
|
%size = add uint 2, 2 ; yields {uint}:size = uint %4
|
2001-12-14 16:46:53 +00:00
|
|
|
%array1 = malloc ubyte, uint 4 ; yields {ubyte*}:array1
|
|
|
|
%array2 = malloc ubyte, uint %size ; yields {ubyte*}:array2
|
2001-11-26 17:02:56 +00:00
|
|
|
|
2002-10-06 22:43:49 +00:00
|
|
|
%idx = getelementptr [4 x ubyte]* %array0, long 0, long 2
|
2002-08-22 16:04:03 +00:00
|
|
|
store ubyte 123, ubyte* %idx
|
2001-06-06 20:29:01 +00:00
|
|
|
free [4x ubyte]* %array0
|
2001-12-14 16:46:53 +00:00
|
|
|
free ubyte* %array1
|
|
|
|
free ubyte* %array2
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
|
2001-11-26 17:02:56 +00:00
|
|
|
%aa = alloca %complexty, uint 5
|
2002-10-06 22:43:49 +00:00
|
|
|
%idx2 = getelementptr %complexty* %aa, long %i0, ubyte 1, ubyte 0, long %j0
|
2002-08-22 16:04:03 +00:00
|
|
|
store sbyte *null, sbyte** %idx2
|
2001-11-26 17:02:56 +00:00
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
%ptr = alloca int ; yields {int*}:ptr
|
2001-07-08 23:23:30 +00:00
|
|
|
store int 3, int* %ptr ; yields {void}
|
|
|
|
%val = load int* %ptr ; yields {int}:val = int %3
|
|
|
|
|
|
|
|
%sptr = alloca %struct ; yields {%struct*}:sptr
|
2002-10-06 22:43:49 +00:00
|
|
|
%ubsptr = getelementptr %struct * %sptr, long 0, ubyte 1, ubyte 1 ; yields {{ubyte}*}:ubsptr
|
|
|
|
%idx3 = getelementptr {ubyte} * %ubsptr, long 0, ubyte 0
|
2002-08-22 16:04:03 +00:00
|
|
|
store ubyte 4, ubyte* %idx3
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
ret int 3
|
|
|
|
end
|
|
|
|
|