diff options
Diffstat (limited to 'test/Transforms/InstCombine/fputs-1.ll')
-rw-r--r-- | test/Transforms/InstCombine/fputs-1.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Transforms/InstCombine/fputs-1.ll b/test/Transforms/InstCombine/fputs-1.ll index 473610e..1c24575 100644 --- a/test/Transforms/InstCombine/fputs-1.ll +++ b/test/Transforms/InstCombine/fputs-1.ll @@ -16,7 +16,7 @@ declare i32 @fputs(i8*, %FILE*) define void @test_simplify1(%FILE* %fp) { ; CHECK-LABEL: @test_simplify1( - %str = getelementptr [1 x i8]* @empty, i32 0, i32 0 + %str = getelementptr [1 x i8], [1 x i8]* @empty, i32 0, i32 0 call i32 @fputs(i8* %str, %FILE* %fp) ret void ; CHECK-NEXT: ret void @@ -26,7 +26,7 @@ define void @test_simplify1(%FILE* %fp) { define void @test_simplify2(%FILE* %fp) { ; CHECK-LABEL: @test_simplify2( - %str = getelementptr [2 x i8]* @A, i32 0, i32 0 + %str = getelementptr [2 x i8], [2 x i8]* @A, i32 0, i32 0 call i32 @fputs(i8* %str, %FILE* %fp) ; CHECK-NEXT: call i32 @fputc(i32 65, %FILE* %fp) ret void @@ -35,9 +35,9 @@ define void @test_simplify2(%FILE* %fp) { define void @test_simplify3(%FILE* %fp) { ; CHECK-LABEL: @test_simplify3( - %str = getelementptr [7 x i8]* @hello, i32 0, i32 0 + %str = getelementptr [7 x i8], [7 x i8]* @hello, i32 0, i32 0 call i32 @fputs(i8* %str, %FILE* %fp) -; CHECK-NEXT: call i32 @fwrite(i8* getelementptr inbounds ([7 x i8]* @hello, i32 0, i32 0), i32 6, i32 1, %FILE* %fp) +; CHECK-NEXT: call i32 @fwrite(i8* getelementptr inbounds ([7 x i8], [7 x i8]* @hello, i32 0, i32 0), i32 6, i32 1, %FILE* %fp) ret void ; CHECK-NEXT: ret void } |