diff options
author | Devang Patel <dpatel@apple.com> | 2010-06-24 00:33:28 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-06-24 00:33:28 +0000 |
commit | 0dc3c2d37ee1f91e6c5fb3d91604c6147c2d7916 (patch) | |
tree | 7d0cc5f607976ec763d26c8d6b63c8c859a29975 /llvm/tools/bugpoint/BugDriver.h | |
parent | 191a1cd2bb06a62daa761a3bfa972068b8c2c378 (diff) | |
download | bcm5719-llvm-0dc3c2d37ee1f91e6c5fb3d91604c6147c2d7916.tar.gz bcm5719-llvm-0dc3c2d37ee1f91e6c5fb3d91604c6147c2d7916.zip |
Use ValueMap instead of DenseMap.
The ValueMapper used by various cloning utility maps MDNodes also.
llvm-svn: 106706
Diffstat (limited to 'llvm/tools/bugpoint/BugDriver.h')
-rw-r--r-- | llvm/tools/bugpoint/BugDriver.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/bugpoint/BugDriver.h b/llvm/tools/bugpoint/BugDriver.h index e5b7373f04c..4681ac4ab5b 100644 --- a/llvm/tools/bugpoint/BugDriver.h +++ b/llvm/tools/bugpoint/BugDriver.h @@ -16,7 +16,7 @@ #ifndef BUGDRIVER_H #define BUGDRIVER_H -#include "llvm/ADT/DenseMap.h" +#include "llvm/ADT/ValueMap.h" #include <vector> #include <string> @@ -325,7 +325,7 @@ void DeleteFunctionBody(Function *F); /// module, split the functions OUT of the specified module, and place them in /// the new module. Module *SplitFunctionsOutOfModule(Module *M, const std::vector<Function*> &F, - DenseMap<const Value*, Value*> &ValueMap); + ValueMap<const Value*, Value*> &VMap); } // End llvm namespace |