diff options
author | Pirama Arumuga Nainar <pirama@google.com> | 2015-04-10 22:08:18 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-04-10 22:08:18 +0000 |
commit | 13a7db5b9c4f5e543d037be68ec3428216bfd550 (patch) | |
tree | 1b2c9792582e12f5af0b1512e3094425f0dc0df9 /test/Transforms/InstCombine/fwrite-1.ll | |
parent | 0eb46f5d1e06a4284663d636a74b06adc3a161d7 (diff) | |
parent | 31195f0bdca6ee2a5e72d07edf13e1d81206d949 (diff) | |
download | external_llvm-13a7db5b9c4f5e543d037be68ec3428216bfd550.zip external_llvm-13a7db5b9c4f5e543d037be68ec3428216bfd550.tar.gz external_llvm-13a7db5b9c4f5e543d037be68ec3428216bfd550.tar.bz2 |
am 31195f0b: Merge "Update aosp/master llvm for rebase to r233350"
* commit '31195f0bdca6ee2a5e72d07edf13e1d81206d949':
Update aosp/master llvm for rebase to r233350
Diffstat (limited to 'test/Transforms/InstCombine/fwrite-1.ll')
-rw-r--r-- | test/Transforms/InstCombine/fwrite-1.ll | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/Transforms/InstCombine/fwrite-1.ll b/test/Transforms/InstCombine/fwrite-1.ll index 6f9a8e4..10f0b23 100644 --- a/test/Transforms/InstCombine/fwrite-1.ll +++ b/test/Transforms/InstCombine/fwrite-1.ll @@ -15,7 +15,7 @@ declare i64 @fwrite(i8*, i64, i64, %FILE *) define void @test_simplify1(%FILE* %fp) { ; CHECK-LABEL: @test_simplify1( - %str = getelementptr inbounds [1 x i8]* @str, i64 0, i64 0 + %str = getelementptr inbounds [1 x i8], [1 x i8]* @str, i64 0, i64 0 call i64 @fwrite(i8* %str, i64 1, i64 1, %FILE* %fp) ; CHECK-NEXT: call i32 @fputc(i32 0, %FILE* %fp) ret void @@ -24,7 +24,7 @@ define void @test_simplify1(%FILE* %fp) { define void @test_simplify2(%FILE* %fp) { ; CHECK-LABEL: @test_simplify2( - %str = getelementptr inbounds [0 x i8]* @empty, i64 0, i64 0 + %str = getelementptr inbounds [0 x i8], [0 x i8]* @empty, i64 0, i64 0 call i64 @fwrite(i8* %str, i64 1, i64 0, %FILE* %fp) ret void ; CHECK-NEXT: ret void @@ -32,7 +32,7 @@ define void @test_simplify2(%FILE* %fp) { define void @test_simplify3(%FILE* %fp) { ; CHECK-LABEL: @test_simplify3( - %str = getelementptr inbounds [0 x i8]* @empty, i64 0, i64 0 + %str = getelementptr inbounds [0 x i8], [0 x i8]* @empty, i64 0, i64 0 call i64 @fwrite(i8* %str, i64 0, i64 1, %FILE* %fp) ret void ; CHECK-NEXT: ret void @@ -40,7 +40,7 @@ define void @test_simplify3(%FILE* %fp) { define i64 @test_no_simplify1(%FILE* %fp) { ; CHECK-LABEL: @test_no_simplify1( - %str = getelementptr inbounds [1 x i8]* @str, i64 0, i64 0 + %str = getelementptr inbounds [1 x i8], [1 x i8]* @str, i64 0, i64 0 %ret = call i64 @fwrite(i8* %str, i64 1, i64 1, %FILE* %fp) ; CHECK-NEXT: call i64 @fwrite ret i64 %ret @@ -49,7 +49,7 @@ define i64 @test_no_simplify1(%FILE* %fp) { define void @test_no_simplify2(%FILE* %fp, i64 %size) { ; CHECK-LABEL: @test_no_simplify2( - %str = getelementptr inbounds [1 x i8]* @str, i64 0, i64 0 + %str = getelementptr inbounds [1 x i8], [1 x i8]* @str, i64 0, i64 0 call i64 @fwrite(i8* %str, i64 %size, i64 1, %FILE* %fp) ; CHECK-NEXT: call i64 @fwrite ret void |