1; RUN: llc < %s -mtriple=thumbv7-linux-gnueabi -verify-machineinstrs 2; Just shouldn't crash, PR28348 3 4%C = type { ptr } 5 6define void @repro(ptr %this, i32 %a) { 7 %a_align1 = and i32 %a, -4096 8 %a_and = and i32 %a, 4095 9 %a_align2 = or i32 %a_and, 4096 10 11 call void @use(i32 %a_align1) 12 13 %addptr = getelementptr inbounds i8, ptr null, i32 %a_align2 14 store ptr %addptr, ptr %this, align 4 15 16 ret void 17} 18 19declare void @use(i32) 20