From 42ca69b918d2bad65142347e6b04160d61729f21 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 13 Nov 2001 06:27:19 +0000 Subject: [PATCH] Only use one form of printVal per program to avoid spurious link errors llvm-svn: 1292 --- test/ackermann.ll | 6 +++--- test/fib2.ll | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/test/ackermann.ll b/test/ackermann.ll index 508b5861d99..541ccdea07f 100644 --- a/test/ackermann.ll +++ b/test/ackermann.ll @@ -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 ] ; [#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 diff --git a/test/fib2.ll b/test/fib2.ll index bc6ee04564f..2adb8f16098 100644 --- a/test/fib2.ll +++ b/test/fib2.ll @@ -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 ] ; [#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