r177705 - OpenMP threadprivate directive parsing and semantic analysis

Matt Beaumont-Gay matthewbg at google.com
Mon Mar 25 14:34:36 PDT 2013


Hi Alexey,

On Thu, Mar 21, 2013 at 11:34 PM, Alexey Bataev <a.bataev at hotmail.com> wrote:
> Author: abataev
> Date: Fri Mar 22 01:34:35 2013
> New Revision: 177705
>
> URL: http://llvm.org/viewvc/llvm-project?rev=177705&view=rev
> Log:
> OpenMP threadprivate directive parsing and semantic analysis
>
<snip>
> Added: cfe/trunk/lib/Basic/OpenMPKinds.cpp
> URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Basic/OpenMPKinds.cpp?rev=177705&view=auto
> ==============================================================================
> --- cfe/trunk/lib/Basic/OpenMPKinds.cpp (added)
> +++ cfe/trunk/lib/Basic/OpenMPKinds.cpp Fri Mar 22 01:34:35 2013
> @@ -0,0 +1,43 @@
> +//===--- OpenMPKinds.cpp - Token Kinds Support ----------------------------===//
> +//
> +//                     The LLVM Compiler Infrastructure
> +//
> +// This file is distributed under the University of Illinois Open Source
> +// License. See LICENSE.TXT for details.
> +//
> +//===----------------------------------------------------------------------===//
> +/// \file
> +/// \brief This file implements the OpenMP enum and support functions.
> +///
> +//===----------------------------------------------------------------------===//
> +
> +#include "clang/Basic/OpenMPKinds.h"
> +#include "clang/Basic/IdentifierTable.h"
> +#include "clang/Lex/Token.h"

Basic shouldn't depend on Lex. I've fixed this in r177922.

-Matt



More information about the cfe-commits mailing list