[llvm-commits] CVS: llvm/win32/Target/Target.vcproj 
    Jeff Cohen 
    jeffc at jolt-lang.org
       
    Fri Dec 17 22:55:55 PST 2004
    
    
  
Changes in directory llvm/win32/Target:
Target.vcproj updated: 1.3 -> 1.4
---
Log message:
Rationalize warning suppression.  First, 64-bit portability warnings are disabled.  The
specific warnings they produced were being suppressed anyway.  The truncation warnings
that were suppressed are now enabled, and the few that still occur ought to be fixed.
The only warnings suppressed now are the "negating an unsigned is still unsigned", the
validity of which Chris does not accept, and the "implicit conversion of <type> to bool
performance warning".  Making the conversion explicit won't make it run any faster and
this is an easier way to shut the compiler up.
---
Diffs of the changes:  (+3 -3)
Index: llvm/win32/Target/Target.vcproj
diff -u llvm/win32/Target/Target.vcproj:1.3 llvm/win32/Target/Target.vcproj:1.4
--- llvm/win32/Target/Target.vcproj:1.3	Sat Dec  4 13:14:38 2004
+++ llvm/win32/Target/Target.vcproj	Sat Dec 18 00:55:41 2004
@@ -28,9 +28,9 @@
 				RuntimeTypeInfo="TRUE"
 				UsePrecompiledHeader="0"
 				WarningLevel="3"
-				Detect64BitPortabilityProblems="TRUE"
+				Detect64BitPortabilityProblems="FALSE"
 				DebugInformationFormat="4"
-				DisableSpecificWarnings="4800;4244;4267"/>
+				DisableSpecificWarnings="4146,4800"/>
 			<Tool
 				Name="VCCustomBuildTool"/>
 			<Tool
@@ -72,7 +72,7 @@
 				WarningLevel="3"
 				Detect64BitPortabilityProblems="TRUE"
 				DebugInformationFormat="3"
-				DisableSpecificWarnings="4099;4800;4244;4267"/>
+				DisableSpecificWarnings="4146,4800"/>
 			<Tool
 				Name="VCCustomBuildTool"/>
 			<Tool
    
    
More information about the llvm-commits
mailing list