Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / PowerPC / inline-asm-multilevel-gep.ll
blob4c27021771f74bed7115fa1edb83082951f05859
1 ; RUN: llc < %s -mtriple ppc32-- | FileCheck %s
3 ; @foo is a 2d array of i32s, ex.
4 ; i32 foo [2][2]
5 @foo = internal global [2 x [2 x i32]] zeroinitializer, align 4
7 define void @bar() {
8 ; access foo[1][1]
9 ; CHECK: # foo+12
10   tail call void asm sideeffect "# ${0:c}", "i"(ptr getelementptr inbounds ([2 x [2 x i32]], ptr @foo, i64 0, i64 1, i64 1))
11   ret void