mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-10 06:24:58 +00:00
Making main() return 0 so that we know it ran successfully when it exits.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4991 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d74317acba
commit
297372c523
@ -1,5 +1,5 @@
|
||||
|
||||
void %main() {
|
||||
int %main() {
|
||||
%A = add sbyte 0, 12
|
||||
%B = sub sbyte %A, %A
|
||||
%C = mul sbyte %B, %B
|
||||
@ -24,5 +24,5 @@ void %main() {
|
||||
%F = div uint 5, 6
|
||||
%G = rem uint 6, 5
|
||||
|
||||
ret void
|
||||
ret int 0
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
; test shifts
|
||||
void %main() {
|
||||
int %main() {
|
||||
%i = add int 10, 0
|
||||
%u = add uint 20, 0
|
||||
%shamt = add ubyte 0, 0
|
||||
@ -23,5 +23,5 @@ void %main() {
|
||||
%temp07 = shr int %i, ubyte 6
|
||||
; 1 1 1
|
||||
%temp08 = shr uint %u, ubyte 7
|
||||
ret void
|
||||
ret int 0
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user