Unbreak VC++ build.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33242 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jeff Cohen 2007-01-15 20:27:18 +00:00
parent def2760d00
commit 1b30754ba9
5 changed files with 10 additions and 4 deletions

View File

@ -1929,7 +1929,7 @@ ComputeIterationCountExhaustively(const Loop *L, Value *Cond, bool ExitWhen) {
// Couldn't symbolically evaluate.
if (!CondVal) return UnknownValue;
if (CondVal->getZExtValue() == ExitWhen) {
if (CondVal->getZExtValue() == uint64_t(ExitWhen)) {
ConstantEvolutionLoopExitValue[PN] = PHIVal;
++NumBruteForceTripCountsComputed;
return SCEVConstant::get(ConstantInt::get(Type::Int32Ty, IterationNum));

View File

@ -109,7 +109,7 @@
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
<File
RelativePath="..\..\lib\Target\CBackend\Writer.cpp">
RelativePath="..\..\lib\Target\CBackend\CBackend.cpp">
</File>
</Filter>
<Filter

View File

@ -291,6 +291,9 @@
<File
RelativePath="..\..\include\llvm\CodeGen\RegAllocRegistry.h">
</File>
<File
RelativePath="..\..\include\llvm\CodeGen\RuntimeLibcalls.h">
</File>
<File
RelativePath="..\..\include\llvm\CodeGen\SchedGraphCommon.h">
</File>

View File

@ -290,6 +290,9 @@
<File
RelativePath="..\..\include\llvm\PassManager.h">
</File>
<File
RelativePath="..\..\include\llvm\PassManagers.h">
</File>
<File
RelativePath="..\..\include\llvm\PassSupport.h">
</File>

View File

@ -37,7 +37,7 @@
Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
AdditionalDependencies="$(SolutionDir)X86\$(IntDir)\X86TargetMachine.obj $(SolutionDir)\CBackend\$(IntDir)\Writer.obj"
AdditionalDependencies="$(SolutionDir)X86\$(IntDir)\X86TargetMachine.obj $(SolutionDir)\CBackend\$(IntDir)\CBackend.obj"
OutputFile="$(OutDir)/llc.exe"
LinkIncremental="2"
GenerateDebugInformation="TRUE"
@ -89,7 +89,7 @@
Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
AdditionalDependencies="$(SolutionDir)X86\$(IntDir)\X86TargetMachine.obj $(SolutionDir)\CBackend\$(IntDir)\Writer.obj"
AdditionalDependencies="$(SolutionDir)X86\$(IntDir)\X86TargetMachine.obj $(SolutionDir)\CBackend\$(IntDir)\CBackend.obj"
OutputFile="$(OutDir)/llc.exe"
LinkIncremental="1"
GenerateDebugInformation="TRUE"