xref: /llvm-project/llvm/test/CodeGen/PowerPC/instruction-mix-remarks-BCTRL_LWZinto_toc.ll (revision 427fb35192f1f7bb694a5910b05abc5925a798b2)
1
2; RUN: llc -verify-machineinstrs -mattr=-altivec -mtriple powerpc64-ibm-aix-xcoff \
3; RUN:   -pass-remarks-output=%t -pass-remarks=asm-printer -mcpu=pwr4 -o - %s
4; RUN: FileCheck --input-file=%t %s
5
6; CHECK:  - String:          "\n"
7; CHECK:  - String:          "bctrl\n\tld 2, "
8; CHECK:  - String:          ': '
9; CHECK:  - INST_bctrl:      '1'
10; CHECK:  - String:          "\n"
11
12
13define void @callThroughPtrWithArgs(ptr nocapture) {
14  tail call void %0(i32 signext 1, i16 zeroext 2, i64 3)
15  ret void
16}
17