mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
47772bf0e5
llvm-svn: 17527
12 lines
250 B
LLVM
12 lines
250 B
LLVM
; RUN: llvm-as < %s | llc
|
|
|
|
%.str_1 = internal constant [7 x sbyte] c"hello\0A\00"
|
|
|
|
declare int %printf(sbyte*, ...)
|
|
|
|
int %main() {
|
|
%s = getelementptr [7 x sbyte]* %.str_1, long 0, long 0
|
|
call int (sbyte*, ...)* %printf(sbyte* %s)
|
|
ret int 0
|
|
}
|