mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
607c317488
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10091 91177308-0d34-0410-b5e6-96231b3b80d8
21 lines
390 B
Plaintext
21 lines
390 B
Plaintext
; This testcase shoudl return with an exit code of 1.
|
|
;
|
|
; RUN: llvm-as < %s | not lli
|
|
|
|
%test = global long 0
|
|
implementation
|
|
|
|
|
|
internal long %test() {
|
|
%tmp.0 = load long* %test ; <long> [#uses=1]
|
|
%tmp.1 = add long %tmp.0, 1 ; <long> [#uses=1]
|
|
ret long %tmp.1
|
|
}
|
|
|
|
int %main() {
|
|
%L = call long %test()
|
|
%I = cast long %L to int
|
|
ret int %I
|
|
}
|
|
|