Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1 | %struct = type int * |
| 2 | |
| 3 | implementation |
| 4 | |
| 5 | int "test function"(int %i0, int %j0) |
| 6 | begin |
| 7 | %array0 = malloc [4 x ubyte] ; yields {[4 x ubyte]*}:array0 |
| 8 | %size = add uint 2, 2 ; yields {uint}:size = uint %4 |
| 9 | %array1 = malloc [ubyte], uint 4 ; yields {[ubyte]*}:array1 |
| 10 | %array2 = malloc [ubyte], uint %size ; yields {[ubyte]*}:array2 |
| 11 | free [4x ubyte]* %array0 |
| 12 | free [ubyte]* %array1 |
| 13 | free [ubyte]* %array2 |
| 14 | |
| 15 | |
| 16 | alloca [ubyte], uint 5 |
| 17 | %ptr = alloca int ; yields {int*}:ptr |
| 18 | ;store int* %ptr, int 3 ; yields {void} |
| 19 | ;%val = load int* %ptr ; yields {int}:val = int %3 |
| 20 | |
| 21 | ret int 3 |
| 22 | end |
| 23 | |