Only use one form of printVal per program to avoid spurious link errors
authorChris Lattner <sabre@nondot.org>
Tue, 13 Nov 2001 06:27:19 +0000 (06:27 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 13 Nov 2001 06:27:19 +0000 (06:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1292 91177308-0d34-0410-b5e6-96231b3b80d8

test/ackermann.ll
test/fib2.ll

index 508b5861d99717d5aac7faedfa57d278acdcf2d9..541ccdea07fffe5598e8db2e731cc9271325d661 100644 (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
index bc6ee04564f840beec26afac910a804a3368fe9f..2adb8f16098fabbb7e0085268daa619443e39029 100644 (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