diff options
Diffstat (limited to 'llvm/test/CodeGen/Mips/memcpy.ll')
-rw-r--r-- | llvm/test/CodeGen/Mips/memcpy.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/Mips/memcpy.ll b/llvm/test/CodeGen/Mips/memcpy.ll index 39764a93638..83a41620f29 100644 --- a/llvm/test/CodeGen/Mips/memcpy.ll +++ b/llvm/test/CodeGen/Mips/memcpy.ll @@ -8,9 +8,9 @@ define void @foo1(%struct.S1* %s1, i8 signext %n) nounwind { entry: ; CHECK-NOT: call16(memcpy - %arraydecay = getelementptr inbounds %struct.S1* %s1, i32 0, i32 1, i32 0 + %arraydecay = getelementptr inbounds %struct.S1, %struct.S1* %s1, i32 0, i32 1, i32 0 tail call void @llvm.memcpy.p0i8.p0i8.i32(i8* %arraydecay, i8* getelementptr inbounds ([31 x i8]* @.str, i32 0, i32 0), i32 31, i32 1, i1 false) - %arrayidx = getelementptr inbounds %struct.S1* %s1, i32 0, i32 1, i32 40 + %arrayidx = getelementptr inbounds %struct.S1, %struct.S1* %s1, i32 0, i32 1, i32 40 store i8 %n, i8* %arrayidx, align 1 ret void } |