diff options
Diffstat (limited to 'test/CodeGen/AArch64/fast-isel-int-ext2.ll')
-rw-r--r-- | test/CodeGen/AArch64/fast-isel-int-ext2.ll | 62 |
1 files changed, 31 insertions, 31 deletions
diff --git a/test/CodeGen/AArch64/fast-isel-int-ext2.ll b/test/CodeGen/AArch64/fast-isel-int-ext2.ll index 8df26b2..93741d6 100644 --- a/test/CodeGen/AArch64/fast-isel-int-ext2.ll +++ b/test/CodeGen/AArch64/fast-isel-int-ext2.ll @@ -1,4 +1,4 @@ -; RUN: llc -mtriple=aarch64-apple-darwin -fast-isel -fast-isel-abort -aarch64-atomic-cfg-tidy=false -disable-cgp-branch-opts -verify-machineinstrs < %s | FileCheck %s +; RUN: llc -mtriple=aarch64-apple-darwin -fast-isel -fast-isel-abort=1 -aarch64-atomic-cfg-tidy=false -disable-cgp-branch-opts -verify-machineinstrs < %s | FileCheck %s ; ; Test folding of the sign-/zero-extend into the load instruction. @@ -11,7 +11,7 @@ define i32 @load_unscaled_zext_i8_to_i32(i64 %a) { ; CHECK-NOT: uxtb %1 = sub i64 %a, 8 %2 = inttoptr i64 %1 to i8* - %3 = load i8* %2 + %3 = load i8, i8* %2 br label %bb2 bb2: @@ -25,7 +25,7 @@ define i32 @load_unscaled_zext_i16_to_i32(i64 %a) { ; CHECK-NOT: uxth %1 = sub i64 %a, 8 %2 = inttoptr i64 %1 to i16* - %3 = load i16* %2 + %3 = load i16, i16* %2 br label %bb2 bb2: @@ -39,7 +39,7 @@ define i64 @load_unscaled_zext_i8_to_i64(i64 %a) { ; CHECK-NOT: uxtb %1 = sub i64 %a, 8 %2 = inttoptr i64 %1 to i8* - %3 = load i8* %2 + %3 = load i8, i8* %2 br label %bb2 bb2: @@ -53,7 +53,7 @@ define i64 @load_unscaled_zext_i16_to_i64(i64 %a) { ; CHECK-NOT: uxth %1 = sub i64 %a, 8 %2 = inttoptr i64 %1 to i16* - %3 = load i16* %2 + %3 = load i16, i16* %2 br label %bb2 bb2: @@ -67,7 +67,7 @@ define i64 @load_unscaled_zext_i32_to_i64(i64 %a) { ; CHECK-NOT: uxtw %1 = sub i64 %a, 8 %2 = inttoptr i64 %1 to i32* - %3 = load i32* %2 + %3 = load i32, i32* %2 br label %bb2 bb2: @@ -81,7 +81,7 @@ define i32 @load_unscaled_sext_i8_to_i32(i64 %a) { ; CHECK-NOT: sxtb %1 = sub i64 %a, 8 %2 = inttoptr i64 %1 to i8* - %3 = load i8* %2 + %3 = load i8, i8* %2 br label %bb2 bb2: @@ -95,7 +95,7 @@ define i32 @load_unscaled_sext_i16_to_i32(i64 %a) { ; CHECK-NOT: sxth %1 = sub i64 %a, 8 %2 = inttoptr i64 %1 to i16* - %3 = load i16* %2 + %3 = load i16, i16* %2 br label %bb2 bb2: @@ -109,7 +109,7 @@ define i64 @load_unscaled_sext_i8_to_i64(i64 %a) { ; CHECK-NOT: sxtb %1 = sub i64 %a, 8 %2 = inttoptr i64 %1 to i8* - %3 = load i8* %2 + %3 = load i8, i8* %2 br label %bb2 bb2: @@ -123,7 +123,7 @@ define i64 @load_unscaled_sext_i16_to_i64(i64 %a) { ; CHECK-NOT: sxth %1 = sub i64 %a, 8 %2 = inttoptr i64 %1 to i16* - %3 = load i16* %2 + %3 = load i16, i16* %2 br label %bb2 bb2: @@ -137,7 +137,7 @@ define i64 @load_unscaled_sext_i32_to_i64(i64 %a) { ; CHECK-NOT: sxtw %1 = sub i64 %a, 8 %2 = inttoptr i64 %1 to i32* - %3 = load i32* %2 + %3 = load i32, i32* %2 br label %bb2 bb2: @@ -152,7 +152,7 @@ define i32 @load_register_zext_i8_to_i32(i64 %a, i64 %b) { ; CHECK-NOT: uxtb %1 = add i64 %a, %b %2 = inttoptr i64 %1 to i8* - %3 = load i8* %2 + %3 = load i8, i8* %2 br label %bb2 bb2: @@ -166,7 +166,7 @@ define i32 @load_register_zext_i16_to_i32(i64 %a, i64 %b) { ; CHECK-NOT: uxth %1 = add i64 %a, %b %2 = inttoptr i64 %1 to i16* - %3 = load i16* %2 + %3 = load i16, i16* %2 br label %bb2 bb2: @@ -180,7 +180,7 @@ define i64 @load_register_zext_i8_to_i64(i64 %a, i64 %b) { ; CHECK-NOT: uxtb %1 = add i64 %a, %b %2 = inttoptr i64 %1 to i8* - %3 = load i8* %2 + %3 = load i8, i8* %2 br label %bb2 bb2: @@ -194,7 +194,7 @@ define i64 @load_register_zext_i16_to_i64(i64 %a, i64 %b) { ; CHECK-NOT: uxth %1 = add i64 %a, %b %2 = inttoptr i64 %1 to i16* - %3 = load i16* %2 + %3 = load i16, i16* %2 br label %bb2 bb2: @@ -208,7 +208,7 @@ define i64 @load_register_zext_i32_to_i64(i64 %a, i64 %b) { ; CHECK-NOT: uxtw %1 = add i64 %a, %b %2 = inttoptr i64 %1 to i32* - %3 = load i32* %2 + %3 = load i32, i32* %2 br label %bb2 bb2: @@ -222,7 +222,7 @@ define i32 @load_register_sext_i8_to_i32(i64 %a, i64 %b) { ; CHECK-NOT: sxtb %1 = add i64 %a, %b %2 = inttoptr i64 %1 to i8* - %3 = load i8* %2 + %3 = load i8, i8* %2 br label %bb2 bb2: @@ -236,7 +236,7 @@ define i32 @load_register_sext_i16_to_i32(i64 %a, i64 %b) { ; CHECK-NOT: sxth %1 = add i64 %a, %b %2 = inttoptr i64 %1 to i16* - %3 = load i16* %2 + %3 = load i16, i16* %2 br label %bb2 bb2: @@ -250,7 +250,7 @@ define i64 @load_register_sext_i8_to_i64(i64 %a, i64 %b) { ; CHECK-NOT: sxtb %1 = add i64 %a, %b %2 = inttoptr i64 %1 to i8* - %3 = load i8* %2 + %3 = load i8, i8* %2 br label %bb2 bb2: @@ -264,7 +264,7 @@ define i64 @load_register_sext_i16_to_i64(i64 %a, i64 %b) { ; CHECK-NOT: sxth %1 = add i64 %a, %b %2 = inttoptr i64 %1 to i16* - %3 = load i16* %2 + %3 = load i16, i16* %2 br label %bb2 bb2: @@ -278,7 +278,7 @@ define i64 @load_register_sext_i32_to_i64(i64 %a, i64 %b) { ; CHECK-NOT: sxtw %1 = add i64 %a, %b %2 = inttoptr i64 %1 to i32* - %3 = load i32* %2 + %3 = load i32, i32* %2 br label %bb2 bb2: @@ -294,7 +294,7 @@ define i32 @load_extend_zext_i8_to_i32(i64 %a, i32 %b) { %1 = sext i32 %b to i64 %2 = add i64 %a, %1 %3 = inttoptr i64 %2 to i8* - %4 = load i8* %3 + %4 = load i8, i8* %3 br label %bb2 bb2: @@ -309,7 +309,7 @@ define i32 @load_extend_zext_i16_to_i32(i64 %a, i32 %b) { %1 = sext i32 %b to i64 %2 = add i64 %a, %1 %3 = inttoptr i64 %2 to i16* - %4 = load i16* %3 + %4 = load i16, i16* %3 br label %bb2 bb2: @@ -324,7 +324,7 @@ define i64 @load_extend_zext_i8_to_i64(i64 %a, i32 %b) { %1 = sext i32 %b to i64 %2 = add i64 %a, %1 %3 = inttoptr i64 %2 to i8* - %4 = load i8* %3 + %4 = load i8, i8* %3 br label %bb2 bb2: @@ -339,7 +339,7 @@ define i64 @load_extend_zext_i16_to_i64(i64 %a, i32 %b) { %1 = sext i32 %b to i64 %2 = add i64 %a, %1 %3 = inttoptr i64 %2 to i16* - %4 = load i16* %3 + %4 = load i16, i16* %3 br label %bb2 bb2: @@ -354,7 +354,7 @@ define i64 @load_extend_zext_i32_to_i64(i64 %a, i32 %b) { %1 = sext i32 %b to i64 %2 = add i64 %a, %1 %3 = inttoptr i64 %2 to i32* - %4 = load i32* %3 + %4 = load i32, i32* %3 br label %bb2 bb2: @@ -369,7 +369,7 @@ define i32 @load_extend_sext_i8_to_i32(i64 %a, i32 %b) { %1 = sext i32 %b to i64 %2 = add i64 %a, %1 %3 = inttoptr i64 %2 to i8* - %4 = load i8* %3 + %4 = load i8, i8* %3 br label %bb2 bb2: @@ -384,7 +384,7 @@ define i32 @load_extend_sext_i16_to_i32(i64 %a, i32 %b) { %1 = sext i32 %b to i64 %2 = add i64 %a, %1 %3 = inttoptr i64 %2 to i16* - %4 = load i16* %3 + %4 = load i16, i16* %3 br label %bb2 bb2: @@ -399,7 +399,7 @@ define i64 @load_extend_sext_i8_to_i64(i64 %a, i32 %b) { %1 = sext i32 %b to i64 %2 = add i64 %a, %1 %3 = inttoptr i64 %2 to i8* - %4 = load i8* %3 + %4 = load i8, i8* %3 br label %bb2 bb2: @@ -414,7 +414,7 @@ define i64 @load_extend_sext_i16_to_i64(i64 %a, i32 %b) { %1 = sext i32 %b to i64 %2 = add i64 %a, %1 %3 = inttoptr i64 %2 to i16* - %4 = load i16* %3 + %4 = load i16, i16* %3 br label %bb2 bb2: @@ -429,7 +429,7 @@ define i64 @load_extend_sext_i32_to_i64(i64 %a, i32 %b) { %1 = sext i32 %b to i64 %2 = add i64 %a, %1 %3 = inttoptr i64 %2 to i32* - %4 = load i32* %3 + %4 = load i32, i32* %3 br label %bb2 bb2: |