llvm-project/llvm/lib/Transforms
Chris Lattner 016c00a311 when inlining something like this:
define void @f3(void (i8*)* %__f) ssp {
entry:
  call void %__f(i8* undef)
  unreachable
}

define void @f4(i8* %this) ssp align 2 {
entry:
  call void @f3(void (i8*)* @f2) ssp
  ret void
}

The inliner is turning the indirect call to %__f into a direct
call to F2.  Make the call graph more precise when this happens.

The inliner doesn't revisit call sites introduced by inlining,
so there isn't an easy way to test for this, but a more precise
callgraph is a good thing.

llvm-svn: 102131
2010-04-22 21:31:00 +00:00
..
Hello Prune #includes. 2010-03-01 17:42:17 +00:00
IPO use abstract accessors to CallInst 2010-04-20 13:13:04 +00:00
InstCombine use abstract accessors to CallInst 2010-04-20 13:13:04 +00:00
Instrumentation Revert 101465, it broke internal OpenGL testing. 2010-04-16 23:37:20 +00:00
Scalar use abstract accessors to CallInst 2010-04-20 13:13:04 +00:00
Utils when inlining something like this: 2010-04-22 21:31:00 +00:00
Makefile Revert r100896 and around - this breaks the only mingw32 buildbot we have. 2010-04-15 19:51:42 +00:00