diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-10-27 17:02:08 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-10-27 17:02:08 +0000 |
| commit | 09979912521cdfc08e7856dba0d94f2ded291033 (patch) | |
| tree | 1e9ab5f6d1b81a358c5dd8927b1f609b835aa236 | |
| parent | fb22a85baf52aa0a85fc7ddc741fb90ed0650460 (diff) | |
| download | bcm5719-llvm-09979912521cdfc08e7856dba0d94f2ded291033.tar.gz bcm5719-llvm-09979912521cdfc08e7856dba0d94f2ded291033.zip | |
pseudosourcevalue is also still using getGlobalContext(), so it isn't
thread safe either.
llvm-svn: 85253
| -rw-r--r-- | llvm/lib/CodeGen/PseudoSourceValue.cpp | 1 | ||||
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/PseudoSourceValue.cpp b/llvm/lib/CodeGen/PseudoSourceValue.cpp index 2b5470e8ce7..1875cc78f58 100644 --- a/llvm/lib/CodeGen/PseudoSourceValue.cpp +++ b/llvm/lib/CodeGen/PseudoSourceValue.cpp @@ -14,6 +14,7 @@ #include "llvm/CodeGen/MachineFrameInfo.h" #include "llvm/CodeGen/PseudoSourceValue.h" #include "llvm/DerivedTypes.h" +#include "llvm/LLVMContext.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/ManagedStatic.h" #include "llvm/Support/raw_ostream.h" diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 72e7f586087..8569e0c45b0 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -26,6 +26,7 @@ #include "llvm/Instructions.h" #include "llvm/Intrinsics.h" #include "llvm/IntrinsicInst.h" +#include "llvm/LLVMContext.h" #include "llvm/CodeGen/FastISel.h" #include "llvm/CodeGen/GCStrategy.h" #include "llvm/CodeGen/GCMetadata.h" |

