Jim Laskey | 5aec0b0 | 2006-10-11 13:42:49 +0000 | [diff] [blame^] | 1 | ; RUN: llvm-as < %s | llc -combiner-alias-analysis | grep 'f5' |
| 2 | |
| 3 | target endian = big |
| 4 | target pointersize = 32 |
| 5 | target triple = "powerpc-apple-darwin8.2.0" |
| 6 | %struct.Point = type { double, double, double } |
| 7 | |
| 8 | implementation ; Functions: |
| 9 | |
| 10 | void %offset(%struct.Point* %pt, double %x, double %y, double %z) { |
| 11 | entry: |
| 12 | %tmp = getelementptr %struct.Point* %pt, int 0, uint 0 ; <double*> [#uses=2] |
| 13 | %tmp = load double* %tmp ; <double> [#uses=1] |
| 14 | %tmp2 = add double %tmp, %x ; <double> [#uses=1] |
| 15 | store double %tmp2, double* %tmp |
| 16 | %tmp6 = getelementptr %struct.Point* %pt, int 0, uint 1 ; <double*> [#uses=2] |
| 17 | %tmp7 = load double* %tmp6 ; <double> [#uses=1] |
| 18 | %tmp9 = add double %tmp7, %y ; <double> [#uses=1] |
| 19 | store double %tmp9, double* %tmp6 |
| 20 | %tmp13 = getelementptr %struct.Point* %pt, int 0, uint 2 ; <double*> [#uses=2] |
| 21 | %tmp14 = load double* %tmp13 ; <double> [#uses=1] |
| 22 | %tmp16 = add double %tmp14, %z ; <double> [#uses=1] |
| 23 | store double %tmp16, double* %tmp13 |
| 24 | ret void |
| 25 | } |