Hello, I want to use some code written for program dependence graph iteration, but this code uses hash_map (#include "llvm/ADT/hash_map") which i think remove from llvm, does anyone know how can i use hsah_map or simply replace that? Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20101019/897374c7/attachment.html>
Hi Hamed,> I want to use some code written for program dependence graph iteration, but this > code uses hash_map (#include "llvm/ADT/hash_map") which i think remove from > llvm, does anyone know how can i use hsah_map or simply replace that?you can always grab a copy of hash_map from an older version of LLVM I suppose. Ciao, Duncan.
On Oct 19, 2010, at 4:36 AM, hamed hamzehi wrote:> I want to use some code written for program dependence graph iteration, but this code uses hash_map (#include "llvm/ADT/hash_map") which i think remove from llvm, does anyone know how can i use hsah_map or simply replace that?I think we consider it replaced by DenseMap (#include "llvm/ADT/DenseMap.h"). John. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20101019/7a513ef8/attachment.html>