[RISCV][VLOPT] Add vector narrowing integer right shift instructions to isSupportedIn...
[llvm-project.git] / llvm / test / CodeGen / PowerPC / fast-isel-i64offset.ll
blob8316c2c4fdb3f0343cc51d5a499ff48b383b232a
1 ; RUN: llc -verify-machineinstrs -mtriple powerpc64-unknown-linux-gnu -fast-isel -O0 < %s | FileCheck %s
2 ; RUN: llc -verify-machineinstrs -mtriple powerpc64-ibm-aix-xcoff -fast-isel -O0 < %s | FileCheck %s
4 ; Verify that pointer offsets larger than 32 bits work correctly.
6 define void @test(ptr %array) {
7 ; CHECK-LABEL: test:
8 ; CHECK-NOT: li {{[0-9]+}}, -8
9   %element = getelementptr i32, ptr %array, i64 2147483646
10   store i32 1234, ptr %element
11   ret void