* Export method to merge identically named methods
authorChris Lattner <sabre@nondot.org>
Sat, 3 Nov 2001 19:51:56 +0000 (19:51 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 3 Nov 2001 19:51:56 +0000 (19:51 +0000)
commitb20807f23e331d43a4a6308ccd137bf8bba88e86
tree248962462490c5f90c512e29668ccf3c4f444285
parent407c25bd826364e3fcc67549d94044f84d90ad2f
* Export method to merge identically named methods
* Add code to fix PHI nodes that are missing arguments.  These PHI nodes can
  be generated by GCC if there is an uninitialized variable flowing into a merge
  point.  For example:

int foo(int y) {
  int X;
  if (y) X = 1;
  return X;
}

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1110 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Transforms/IPO/DeadTypeElimination.cpp