diff options
Diffstat (limited to 'test/Transforms/InstCombine/strpbrk-2.ll')
-rw-r--r-- | test/Transforms/InstCombine/strpbrk-2.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/InstCombine/strpbrk-2.ll b/test/Transforms/InstCombine/strpbrk-2.ll index b797d7a..0af6faf 100644 --- a/test/Transforms/InstCombine/strpbrk-2.ll +++ b/test/Transforms/InstCombine/strpbrk-2.ll @@ -13,8 +13,8 @@ declare i16* @strpbrk(i8*, i8*) define i16* @test_no_simplify1() { ; CHECK-LABEL: @test_no_simplify1( - %str = getelementptr [12 x i8]* @hello, i32 0, i32 0 - %pat = getelementptr [2 x i8]* @w, i32 0, i32 0 + %str = getelementptr [12 x i8], [12 x i8]* @hello, i32 0, i32 0 + %pat = getelementptr [2 x i8], [2 x i8]* @w, i32 0, i32 0 %ret = call i16* @strpbrk(i8* %str, i8* %pat) ; CHECK-NEXT: %ret = call i16* @strpbrk |