blob: 3033c2ba3e252d94714865c71cdb2cd998bb90ff [file] [log] [blame]
Dan Gohmanfce288f2009-09-09 00:09:15 +00001; RUN: llc < %s -march=arm | grep ldrb.*7 | count 1
2; RUN: llc < %s -march=arm | grep ldrsb.*7 | count 1
Evan Chengcfe07982007-03-21 20:14:56 +00003
4 %struct.A = type { i8, i8, i8, i8, i16, i8, i8, %struct.B** }
5 %struct.B = type { float, float, i32, i32, i32, [0 x i8] }
6
Evan Cheng60864a82007-03-22 01:55:16 +00007define i8 @f1(%struct.A* %d) {
Evan Chengcfe07982007-03-21 20:14:56 +00008 %tmp2 = getelementptr %struct.A* %d, i32 0, i32 4
9 %tmp23 = bitcast i16* %tmp2 to i32*
10 %tmp4 = load i32* %tmp23
11 %tmp512 = lshr i32 %tmp4, 24
12 %tmp56 = trunc i32 %tmp512 to i8
Evan Cheng60864a82007-03-22 01:55:16 +000013 ret i8 %tmp56
Evan Chengcfe07982007-03-21 20:14:56 +000014}
15
Evan Cheng60864a82007-03-22 01:55:16 +000016define i32 @f2(%struct.A* %d) {
17 %tmp2 = getelementptr %struct.A* %d, i32 0, i32 4
18 %tmp23 = bitcast i16* %tmp2 to i32*
19 %tmp4 = load i32* %tmp23
20 %tmp512 = lshr i32 %tmp4, 24
21 %tmp56 = trunc i32 %tmp512 to i8
22 %tmp57 = sext i8 %tmp56 to i32
23 ret i32 %tmp57
24}