Only use one form of printVal per program to avoid spurious link errors

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1292 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2001-11-13 06:27:19 +00:00
parent 1b600144bd
commit 689e076b90
2 changed files with 5 additions and 5 deletions

View File

@ -6,7 +6,7 @@ implementation
declare void "__main"()
declare void "printVal"([sbyte] *)
declare void "printVal"(int)
declare void "printInt"(int)
declare int "atoi"(sbyte *)
@ -54,9 +54,9 @@ bb8: ;[#uses=2]
bb9: ;[#uses=3]
%reg135 = phi int [ %reg124, %bb8 ], [ %reg119, %bb7 ], [ %reg115, %bb5 ] ; <int> [#uses=1]
call void %printVal([sbyte] *%__intern_LC0)
call void %printVal(int %reg132)
call void %printInt(int %reg132)
call void %printVal([sbyte] *%__intern_LC1)
call void %printVal(int %reg135)
call void %printInt(int %reg135)
call void %printVal([sbyte] *%__intern_LC2)
ret int 0
end

View File

@ -8,7 +8,7 @@ declare void "__main"()
declare int "atoi"(sbyte *)
declare void "printVal"([sbyte] *)
declare void "printVal"(uint)
declare void "printUInt"(uint)
int "main"(int %argc, sbyte * * %argv)
begin
@ -43,7 +43,7 @@ bb6: ;[#uses=2]
bb7: ;[#uses=2]
%reg128 = phi uint [ %reg127, %bb6 ], [ 1, %bb4 ] ; <uint> [#uses=1]
call void %printVal([sbyte] * %__intern_LC0)
call void %printVal(uint %reg128 )
call void %printUInt(uint %reg128 )
call void %printVal([sbyte] * %__intern_LC1)
ret int 0
end