mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
933b5065e5
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52245 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
510 B
LLVM
18 lines
510 B
LLVM
; RUN: llvm-as < %s | llc -march=x86 -mtriple=i386-linux | grep {(\$bar)} | count 1
|
|
; RUN: llvm-as < %s | llc -march=x86 -mtriple=i386-linux | grep {(\$qux)} | count 1
|
|
; RUN: llvm-as < %s | llc -march=x86 -mtriple=i386-linux | grep {(\$hen)} | count 1
|
|
; PR1339
|
|
|
|
@"$bar" = global i32 zeroinitializer
|
|
@"$qux" = external global i32
|
|
|
|
define i32 @"$foo"() nounwind {
|
|
%m = load i32* @"$bar"
|
|
%n = load i32* @"$qux"
|
|
%t = add i32 %m, %n
|
|
%u = call i32 @"$hen"(i32 %t)
|
|
ret i32 %u
|
|
}
|
|
|
|
declare i32 @"$hen"(i32 %a)
|