diff options
author | Sean Callanan <scallanan@apple.com> | 2010-09-23 03:01:22 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2010-09-23 03:01:22 +0000 |
commit | e2ef6e380bc7dc770baf2defa194602ae310d2a9 (patch) | |
tree | 7894638cb13b332aca732d728beb158d40b03719 /lldb/source/Expression/IRDynamicChecks.cpp | |
parent | 002ad003a31d65de026ceebb54f2d1abca2d4f76 (diff) | |
download | bcm5719-llvm-e2ef6e380bc7dc770baf2defa194602ae310d2a9.tar.gz bcm5719-llvm-e2ef6e380bc7dc770baf2defa194602ae310d2a9.zip |
Updated to latest LLVM. Major LLVM changes:
- Sema is now exported (and there was much rejoicing.)
- Storage classes are now centrally defined.
Also fixed some bugs that the new LLVM picked up.
llvm-svn: 114622
Diffstat (limited to 'lldb/source/Expression/IRDynamicChecks.cpp')
-rw-r--r-- | lldb/source/Expression/IRDynamicChecks.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Expression/IRDynamicChecks.cpp b/lldb/source/Expression/IRDynamicChecks.cpp index b5a706d67ec..53cabcb11fa 100644 --- a/lldb/source/Expression/IRDynamicChecks.cpp +++ b/lldb/source/Expression/IRDynamicChecks.cpp @@ -478,7 +478,7 @@ private: IRDynamicChecks::IRDynamicChecks(DynamicCheckerFunctions &checker_functions, const char *func_name) : - ModulePass(&ID), + ModulePass(ID), m_checker_functions(checker_functions), m_func_name(func_name) { |