
The LIT test cases were migrated with the script provided by Nikita Popov. Due to the size of the change it is split into several parts. Reviewed By: nemanja, amyk, nikic, PowerPC Differential Revision: https://reviews.llvm.org/D135470
13 lines
276 B
LLVM
13 lines
276 B
LLVM
; RUN: llc -verify-machineinstrs < %s -mtriple=ppc32--
|
|
; RUN: llc -verify-machineinstrs < %s -mtriple=ppc64--
|
|
; PR1399
|
|
|
|
@.str = internal constant [13 x i8] c"Hello World!\00"
|
|
|
|
define i32 @main() {
|
|
%tmp2 = tail call i32 @puts( ptr @.str )
|
|
ret i32 0
|
|
}
|
|
|
|
declare i32 @puts(ptr)
|