summaryrefslogtreecommitdiffstats
path: root/llvm/win32
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
commitc3ba60ece694fa4e3f6fbb3bc917c0060c5f09a3 (patch)
treed4b312345f1c3895e5fc9639671dcca93e732b14 /llvm/win32
parent5ababc6f33a722e529565d411c3ade6334c20202 (diff)
downloadbcm5719-llvm-c3ba60ece694fa4e3f6fbb3bc917c0060c5f09a3.tar.gz
bcm5719-llvm-c3ba60ece694fa4e3f6fbb3bc917c0060c5f09a3.zip
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. llvm-svn: 19031
Diffstat (limited to 'llvm/win32')
-rw-r--r--llvm/win32/Analysis/Analysis.vcproj6
-rw-r--r--llvm/win32/CodeGen/CodeGen.vcproj6
-rw-r--r--llvm/win32/ExecutionEngine/ExecutionEngine.vcproj6
-rw-r--r--llvm/win32/Fibonacci/Fibonacci.vcproj6
-rw-r--r--llvm/win32/Support/Support.vcproj6
-rw-r--r--llvm/win32/System/System.vcproj6
-rw-r--r--llvm/win32/TableGen/TableGen.vcproj6
-rw-r--r--llvm/win32/Target/Target.vcproj6
-rw-r--r--llvm/win32/Transforms/Transforms.vcproj6
-rw-r--r--llvm/win32/VMCore/VMCore.vcproj6
-rw-r--r--llvm/win32/x86/x86.vcproj6
11 files changed, 33 insertions, 33 deletions
diff --git a/llvm/win32/Analysis/Analysis.vcproj b/llvm/win32/Analysis/Analysis.vcproj
index 3f93272847c..4eb0bf3eb99 100644
--- a/llvm/win32/Analysis/Analysis.vcproj
+++ b/llvm/win32/Analysis/Analysis.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
diff --git a/llvm/win32/CodeGen/CodeGen.vcproj b/llvm/win32/CodeGen/CodeGen.vcproj
index ef0c62a36f5..738a2318e9e 100644
--- a/llvm/win32/CodeGen/CodeGen.vcproj
+++ b/llvm/win32/CodeGen/CodeGen.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
diff --git a/llvm/win32/ExecutionEngine/ExecutionEngine.vcproj b/llvm/win32/ExecutionEngine/ExecutionEngine.vcproj
index 95a71df554e..b5e959bb427 100644
--- a/llvm/win32/ExecutionEngine/ExecutionEngine.vcproj
+++ b/llvm/win32/ExecutionEngine/ExecutionEngine.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
diff --git a/llvm/win32/Fibonacci/Fibonacci.vcproj b/llvm/win32/Fibonacci/Fibonacci.vcproj
index 175641bb4bd..2db0f237ce9 100644
--- a/llvm/win32/Fibonacci/Fibonacci.vcproj
+++ b/llvm/win32/Fibonacci/Fibonacci.vcproj
@@ -28,9 +28,9 @@
RuntimeTypeInfo="TRUE"
UsePrecompiledHeader="0"
WarningLevel="3"
- Detect64BitPortabilityProblems="TRUE"
+ Detect64BitPortabilityProblems="FALSE"
DebugInformationFormat="4"
- DisableSpecificWarnings="4099;4800;4244;4267"/>
+ DisableSpecificWarnings="4146,4800"/>
<Tool
Name="VCCustomBuildTool"/>
<Tool
@@ -85,7 +85,7 @@
WarningLevel="3"
Detect64BitPortabilityProblems="TRUE"
DebugInformationFormat="3"
- DisableSpecificWarnings="4099;4800;4244;4267"/>
+ DisableSpecificWarnings="4146,4800"/>
<Tool
Name="VCCustomBuildTool"/>
<Tool
diff --git a/llvm/win32/Support/Support.vcproj b/llvm/win32/Support/Support.vcproj
index 825804ae213..1071aa0d0d2 100644
--- a/llvm/win32/Support/Support.vcproj
+++ b/llvm/win32/Support/Support.vcproj
@@ -29,9 +29,9 @@
RuntimeTypeInfo="TRUE"
UsePrecompiledHeader="0"
WarningLevel="3"
- Detect64BitPortabilityProblems="TRUE"
+ Detect64BitPortabilityProblems="FALSE"
DebugInformationFormat="4"
- DisableSpecificWarnings="4800;4244;4267"/>
+ DisableSpecificWarnings="4146,4800"/>
<Tool
Name="VCCustomBuildTool"/>
<Tool
@@ -73,7 +73,7 @@
WarningLevel="3"
Detect64BitPortabilityProblems="TRUE"
DebugInformationFormat="3"
- DisableSpecificWarnings="4099;4800;4244;4267"/>
+ DisableSpecificWarnings="4146,4800"/>
<Tool
Name="VCCustomBuildTool"/>
<Tool
diff --git a/llvm/win32/System/System.vcproj b/llvm/win32/System/System.vcproj
index 74978566128..c63f020cd44 100644
--- a/llvm/win32/System/System.vcproj
+++ b/llvm/win32/System/System.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
@@ -73,7 +73,7 @@
WarningLevel="3"
Detect64BitPortabilityProblems="TRUE"
DebugInformationFormat="3"
- DisableSpecificWarnings="4099;4800;4244;4267"/>
+ DisableSpecificWarnings="4146,4800"/>
<Tool
Name="VCCustomBuildTool"/>
<Tool
diff --git a/llvm/win32/TableGen/TableGen.vcproj b/llvm/win32/TableGen/TableGen.vcproj
index de800362f74..ad872d192ff 100644
--- a/llvm/win32/TableGen/TableGen.vcproj
+++ b/llvm/win32/TableGen/TableGen.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
@@ -81,7 +81,7 @@
WarningLevel="3"
Detect64BitPortabilityProblems="TRUE"
DebugInformationFormat="3"
- DisableSpecificWarnings="4099;4800;4244;4267"/>
+ DisableSpecificWarnings="4146,4800"/>
<Tool
Name="VCCustomBuildTool"/>
<Tool
diff --git a/llvm/win32/Target/Target.vcproj b/llvm/win32/Target/Target.vcproj
index bc1249d7c1e..42c1309ebd2 100644
--- a/llvm/win32/Target/Target.vcproj
+++ b/llvm/win32/Target/Target.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
diff --git a/llvm/win32/Transforms/Transforms.vcproj b/llvm/win32/Transforms/Transforms.vcproj
index d9685f2b1de..c4897d9e0b8 100644
--- a/llvm/win32/Transforms/Transforms.vcproj
+++ b/llvm/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
diff --git a/llvm/win32/VMCore/VMCore.vcproj b/llvm/win32/VMCore/VMCore.vcproj
index dd703945d3e..5f404465505 100644
--- a/llvm/win32/VMCore/VMCore.vcproj
+++ b/llvm/win32/VMCore/VMCore.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
diff --git a/llvm/win32/x86/x86.vcproj b/llvm/win32/x86/x86.vcproj
index 4e0fad0999b..ea979be094c 100644
--- a/llvm/win32/x86/x86.vcproj
+++ b/llvm/win32/x86/x86.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
@@ -81,7 +81,7 @@
WarningLevel="3"
Detect64BitPortabilityProblems="TRUE"
DebugInformationFormat="3"
- DisableSpecificWarnings="4099;4800;4244;4267"/>
+ DisableSpecificWarnings="4146,4800"/>
<Tool
Name="VCCustomBuildTool"/>
<Tool
OpenPOWER on IntegriCloud