mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
4572ce85b0
llvm-svn: 33296
21 lines
405 B
Plaintext
21 lines
405 B
Plaintext
; This testcase shoudl return with an exit code of 1.
|
|
;
|
|
; RUN: llvm-upgrade < %s | llvm-as | 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
|
|
}
|
|
|