[llvm-commits] [llvm] r67311 - in /llvm/trunk: include/llvm/Transforms/IPO/InlinerPass.h lib/Analysis/IPA/CallGraph.cpp lib/Transforms/IPO/Inliner.cpp lib/Transforms/IPO/PruneEH.cpp

Chris Lattner clattner at apple.com
Thu Mar 19 22:37:37 PDT 2009


On Mar 19, 2009, at 1:34 PM, Evan Cheng wrote:
>>> Should this use SmallPtrSet instead of std::set?
>>
>> If I'm reading the doc right, iterating through a SmallPtrSet visits
>> elements in nondeterministic order; we don't want that here.
>
> Right. But I don't see SCCFunctions being iterated.

Also, std::set<pointer> is also nondeterministic as well.

-Chris



More information about the llvm-commits mailing list