From: Nick Lewycky Date: Fri, 12 Jun 2009 13:24:41 +0000 (+0000) Subject: This test is wrong. If you have two weak functions F and G you can't make X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f343b69f47192dc9d1479f8b14aadccd17820d90;p=oota-llvm.git This test is wrong. If you have two weak functions F and G you can't make either one call the other since either one can be replaced at link time, and they need to be independent. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73225 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/MergeFunc/fold-weak.ll b/test/Transforms/MergeFunc/fold-weak.ll deleted file mode 100644 index d98fde0228f..00000000000 --- a/test/Transforms/MergeFunc/fold-weak.ll +++ /dev/null @@ -1,11 +0,0 @@ -; RUN: llvm-as < %s | opt -mergefunc | llvm-dis | grep {alias weak} | count 2 - -define weak i32 @sum(i32 %x, i32 %y) { - %sum = add i32 %x, %y - ret i32 %sum -} - -define weak i32 @add(i32 %x, i32 %y) { - %sum = add i32 %x, %y - ret i32 %sum -}