1 ; RUN: llc -verify-machineinstrs -mtriple powerpc64-unknown-linux-gnu -fast-isel -O0 < %s | FileCheck %s
3 ; Verify that pointer offsets larger than 32 bits work correctly.
5 define void @test(i32* %array) {
7 ; CHECK-NOT: li {{[0-9]+}}, -8
8 %element = getelementptr i32, i32* %array, i64 2147483646
9 store i32 1234, i32* %element