Fix typo.
[oota-llvm.git] / test / CodeGen / PowerPC / asm-Zy.ll
1 target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128-v128:128:128-n32:64"
2 target triple = "powerpc64-bgq-linux"
3 ; RUN: llc < %s -march=ppc64 -mcpu=a2 | FileCheck %s
4
5 define i32 @zytest(i32 %a) nounwind {
6 entry:
7 ; CHECK: @zytest
8   %r = call i32 asm "lwbrx $0, ${1:y}", "=r,Z"(i32 %a) nounwind, !srcloc !0
9   ret i32 %r
10 ; CHECK: lwbrx 3, 0,
11 }
12
13 !0 = !{i32 101688}
14