summaryrefslogtreecommitdiff
path: root/win32/Transforms
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2004-12-18 06:55:41 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2004-12-18 06:55:41 +0000
commit530f887ff2549d58020310ff53003bcd9ba76c4a (patch)
tree8996a4c4486c6f5db51438c555e41dd21de2bf97 /win32/Transforms
parent06c06dbaafbc30e7926b3bcbbe6f8a0887cbfc62 (diff)
downloadllvm-530f887ff2549d58020310ff53003bcd9ba76c4a.tar.gz
llvm-530f887ff2549d58020310ff53003bcd9ba76c4a.tar.bz2
llvm-530f887ff2549d58020310ff53003bcd9ba76c4a.tar.xz
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19031 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'win32/Transforms')
-rw-r--r--win32/Transforms/Transforms.vcproj6
1 files changed, 3 insertions, 3 deletions
diff --git a/win32/Transforms/Transforms.vcproj b/win32/Transforms/Transforms.vcproj
index d9685f2b1d..c4897d9e0b 100644
--- a/win32/Transforms/Transforms.vcproj
+++ b/win32/Transforms/Transforms.vcproj
@@ -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