1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 14:32:51 +01:00
llvm-mirror/test/Regression/ExecutionEngine/2003-05-06-LivenessClobber.llx
Chris Lattner de27290f6b Genericize tests
llvm-svn: 10091
2003-11-19 19:44:28 +00:00

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
}