1*ac5d5351SStephen Peckham; RUN: llc -filetype=obj -mtriple powerpc-ibm-aix-xcoff -o %t.o < %s 2*ac5d5351SStephen Peckham; RUN: llvm-objdump --syms --symbol-description %t.o | FileCheck --check-prefix=CHECK32 %s 3*ac5d5351SStephen Peckham; RUN: llc -filetype=obj -mtriple powerpc64-ibm-aix-xcoff -o %t.o < %s 4*ac5d5351SStephen Peckham; RUN: llvm-objdump --syms --symbol-description %t.o | FileCheck --check-prefix=CHECK64 %s 5*ac5d5351SStephen Peckham 6*ac5d5351SStephen Peckhamdefine i32 @main() { 7*ac5d5351SStephen Peckhamentry: 8*ac5d5351SStephen Peckham %retval = alloca i32, align 4 9*ac5d5351SStephen Peckham store i32 0, ptr %retval, align 4 10*ac5d5351SStephen Peckham %call = call i32 @text() 11*ac5d5351SStephen Peckham ret i32 %call 12*ac5d5351SStephen Peckham} 13*ac5d5351SStephen Peckham 14*ac5d5351SStephen Peckhamdeclare i32 @text(...) 15*ac5d5351SStephen Peckham 16*ac5d5351SStephen Peckham; CHECK32: 00000000 *UND* 00000000 (idx: {{[[:digit:]]*}}) .text[PR] 17*ac5d5351SStephen Peckham 18*ac5d5351SStephen Peckham; CHECK64: 0000000000000000 *UND* 0000000000000000 (idx: {{[[:digit:]]*}}) .text[PR] 19