From: Chris Lattner Date: Mon, 13 Jan 2003 00:57:19 +0000 (+0000) Subject: Test longs and fp X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2ecd4952352e451a73c1db68bf3c6ef93f4674fe;p=oota-llvm.git Test longs and fp git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5248 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/ExecutionEngine/test-ret.ll b/test/ExecutionEngine/test-ret.ll index 791018c0652..02195dd4645 100644 --- a/test/ExecutionEngine/test-ret.ll +++ b/test/ExecutionEngine/test-ret.ll @@ -7,7 +7,7 @@ short %test() { ret short -1 } ushort %test() { ret ushort 65535 } int %main() { ret int 0 } uint %test() { ret uint 4 } -;long %test() { ret void } -;ulong %test() { ret void } -;float %test() { ret float 1.0 } -;double %test() { ret double 2.0 } +long %test() { ret long 0 } +ulong %test() { ret ulong 0 } +float %test() { ret float 1.0 } +double %test() { ret double 2.0 }