aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/ADT/ValueMap.h
AgeCommit message (Expand)Author
2012-12-03Sort the #include lines for the include/... tree with the script.Chandler Carruth
2012-09-17Mark unimplemented copy constructors and copy assignment operators as LLVM_DE...Craig Topper
2012-05-19Disambiguate call to operator==.Benjamin Kramer
2012-05-19ValueMap: Use DenseMap's find_as mechanism to reduce use list churn.Benjamin Kramer
2012-04-06DenseMap: Perform the pod-like object optimization when the value type is POD...Benjamin Kramer
2010-11-29Merge System into Support.Michael J. Spencer
2010-09-01Make the iterator form of erase return void, since it always succeeds,Dan Gohman
2010-08-09Remove the ValueMap operator=, which was wrong (it did't correct theDuncan Sands
2010-08-08Remove the ValueMap copy constructor. It's not used anywhere,Duncan Sands
2010-07-30Fix the ValueMap copy constructor. The issue is that the map keys are valueDuncan Sands
2010-07-27In commit 91421, isPod was changed from false to true for these value handles.Duncan Sands
2010-06-24Silence some unused variable warnings.Eric Christopher
2009-12-15Remove isPod() from DenseMapInfo, splitting it out to its ownChris Lattner
2009-10-27Fix VS build, patch by Marius Wachtler.Mike Stump
2009-10-23Fix stylistic and documentation problems in ValueMap found by Nick Lewycky andJeffrey Yasskin
2009-10-22Try r84890 again (adding ValueMap<>), now that I've tested the compile onJeffrey Yasskin
2009-10-22Revert r84890, which broke the linux build.Jeffrey Yasskin
2009-10-22Add a ValueMap<ValueOrSubclass*, T> type. ValueMap<Value*, T> is safe to useJeffrey Yasskin