diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2014-10-10 12:40:56 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2014-10-10 12:40:56 +0000 |
commit | c6924d8690e343d82a32948b07910420070d84b1 (patch) | |
tree | ec0dcc548d6d352368a762d4bc4097badd9bdae7 | |
parent | 1809571c7698e133e6325a9d8911ee073e35dfe8 (diff) | |
download | bcm5719-llvm-c6924d8690e343d82a32948b07910420070d84b1.tar.gz bcm5719-llvm-c6924d8690e343d82a32948b07910420070d84b1.zip |
Fixing the MSVC 2013 build, NFC.
llvm-svn: 219491
-rw-r--r-- | clang/lib/CodeGen/CGOpenMPRuntime.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGOpenMPRuntime.cpp b/clang/lib/CodeGen/CGOpenMPRuntime.cpp index cc69d60924c..ce227ffc4b3 100644 --- a/clang/lib/CodeGen/CGOpenMPRuntime.cpp +++ b/clang/lib/CodeGen/CGOpenMPRuntime.cpp @@ -25,6 +25,8 @@ using namespace clang; using namespace CodeGen; +namespace clang { +namespace CodeGen { /// \brief API for captured statement code generation in OpenMP constructs. class CGOpenMPRegionInfo : public CodeGenFunction::CGCapturedStmtInfo { public: @@ -61,6 +63,7 @@ private: /// \brief OpenMP executable directive associated with the region. const OMPExecutableDirective &Directive; }; +}} LValue CGOpenMPRegionInfo::getThreadIDVariableLValue(CodeGenFunction &CGF) { return CGF.MakeNaturalAlignAddrLValue( |