[llvm-commits] [llvm] r44340 - in /llvm/trunk: utils/TableGen/TGParser.cpp win32/TableGen/TableGen.vcproj
Chuck Rose III
cfr at adobe.com
Mon Nov 26 15:20:00 PST 2007
Author: cfr
Date: Mon Nov 26 17:19:59 2007
New Revision: 44340
URL: http://llvm.org/viewvc/llvm-project?rev=44340&view=rev
Log:
Add TGParser files to VStudio project files. Removed generated files section from TableGen project file as it is no longer needed. #Include <algorithm> directly from TGParser.cpp so it can see std::reverse.
Modified:
llvm/trunk/utils/TableGen/TGParser.cpp
llvm/trunk/win32/TableGen/TableGen.vcproj
Modified: llvm/trunk/utils/TableGen/TGParser.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/TGParser.cpp?rev=44340&r1=44339&r2=44340&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/TGParser.cpp (original)
+++ llvm/trunk/utils/TableGen/TGParser.cpp Mon Nov 26 17:19:59 2007
@@ -11,6 +11,8 @@
//
//===----------------------------------------------------------------------===//
+#include <algorithm>
+
#include "TGParser.h"
#include "Record.h"
#include "llvm/ADT/StringExtras.h"
Modified: llvm/trunk/win32/TableGen/TableGen.vcproj
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/win32/TableGen/TableGen.vcproj?rev=44340&r1=44339&r2=44340&view=diff
==============================================================================
--- llvm/trunk/win32/TableGen/TableGen.vcproj (original)
+++ llvm/trunk/win32/TableGen/TableGen.vcproj Mon Nov 26 17:19:59 2007
@@ -388,50 +388,6 @@
>
</File>
<File
- RelativePath="..\..\utils\TableGen\FileParser.y"
- >
- <FileConfiguration
- Name="Debug|Win32"
- >
- <Tool
- Name="VCCustomBuildTool"
- Description="Bisoning $(InputFileName)"
- CommandLine="..\dobison.cmd File debug $(InputName) $(InputPath) ..\..\utils\TableGen
"
- Outputs="$(InputName).cpp;$(InputName).h;$(InputName).output;..\..\utils\TableGen\$(InputName).h"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32"
- >
- <Tool
- Name="VCCustomBuildTool"
- Description="Bisoning $(InputFileName)"
- CommandLine="..\dobison.cmd File release $(InputName) $(InputPath) ..\..\utils\TableGen
"
- Outputs="$(InputName).cpp;$(InputName).h;$(InputName).output;..\..\utils\TableGen\$(InputName).h"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Debug|x64"
- >
- <Tool
- Name="VCCustomBuildTool"
- Description="Bisoning $(InputFileName)"
- CommandLine="..\dobison.cmd File debug $(InputName) $(InputPath) ..\..\utils\TableGen
"
- Outputs="$(InputName).cpp;$(InputName).h;$(InputName).output;..\..\utils\TableGen\$(InputName).h"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release|x64"
- >
- <Tool
- Name="VCCustomBuildTool"
- Description="Bisoning $(InputFileName)"
- CommandLine="..\dobison.cmd File release $(InputName) $(InputPath) ..\..\utils\TableGen
"
- Outputs="$(InputName).cpp;$(InputName).h;$(InputName).output;..\..\utils\TableGen\$(InputName).h"
- />
- </FileConfiguration>
- </File>
- <File
RelativePath="..\..\utils\TableGen\InstrInfoEmitter.cpp"
>
</File>
@@ -463,6 +419,14 @@
RelativePath="..\..\utils\TableGen\TGLexer.cpp"
>
</File>
+ <File
+ RelativePath="..\..\utils\TableGen\TGLexer.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\utils\TableGen\TGParser.cpp"
+ >
+ </File>
</Filter>
<Filter
Name="Header Files"
@@ -526,51 +490,7 @@
>
</File>
<File
- RelativePath="..\..\utils\TableGen\TGLexer.h"
- >
- </File>
- </Filter>
- <Filter
- Name="Generated Files"
- >
- <File
- RelativePath="fileparser.cpp"
- >
- <FileConfiguration
- Name="Debug|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- DisableSpecificWarnings="4065"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- DisableSpecificWarnings="4065"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Debug|x64"
- >
- <Tool
- Name="VCCLCompilerTool"
- DisableSpecificWarnings="4065"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release|x64"
- >
- <Tool
- Name="VCCLCompilerTool"
- DisableSpecificWarnings="4065"
- />
- </FileConfiguration>
- </File>
- <File
- RelativePath="fileparser.h"
+ RelativePath="..\..\utils\TableGen\TGParser.h"
>
</File>
</Filter>
More information about the llvm-commits
mailing list