diff options
author | xli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-01-31 04:57:46 +0000 |
---|---|---|
committer | xli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-01-31 04:57:46 +0000 |
commit | 92dda53e9fe6568c9204ffd97f146710bdde3369 (patch) | |
tree | 6e555e93dae8c4ea49d503ecae1f56b3d4d2db3a /EdkModulePkg/Library | |
parent | 86e6bb786f6f23201a2041901362e08b80681930 (diff) | |
download | edk2-platforms-92dda53e9fe6568c9204ffd97f146710bdde3369.tar.xz |
Make EdkModulePkg pass Intel IPF compiler with /W4 /WX switches, solving warning #1419.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2338 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkModulePkg/Library')
-rw-r--r-- | EdkModulePkg/Library/DxeCorePerformanceLib/DxeCorePerformanceLib.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/EdkModulePkg/Library/DxeCorePerformanceLib/DxeCorePerformanceLib.c b/EdkModulePkg/Library/DxeCorePerformanceLib/DxeCorePerformanceLib.c index bd4b5adcec..727133226c 100644 --- a/EdkModulePkg/Library/DxeCorePerformanceLib/DxeCorePerformanceLib.c +++ b/EdkModulePkg/Library/DxeCorePerformanceLib/DxeCorePerformanceLib.c @@ -45,6 +45,7 @@ Abstract: @retval EFI_OUT_OF_RESOURCES There are not enough resources to record the measurement.
**/
+STATIC
EFI_STATUS
EFIAPI
StartGauge (
@@ -78,6 +79,7 @@ StartGauge ( @retval EFI_NOT_FOUND The specified measurement record could not be found.
**/
+STATIC
EFI_STATUS
EFIAPI
EndGauge (
@@ -105,6 +107,7 @@ EndGauge ( @retval EFI_INVALIDE_PARAMETER GaugeDataEntry is NULL.
**/
+STATIC
EFI_STATUS
EFIAPI
GetGauge (
@@ -202,6 +205,7 @@ InternalSearchForGaugeEntry ( @retval EFI_OUT_OF_RESOURCES There are not enough resources to record the measurement.
**/
+STATIC
EFI_STATUS
EFIAPI
StartGauge (
@@ -284,6 +288,7 @@ StartGauge ( @retval EFI_NOT_FOUND The specified measurement record could not be found.
**/
+STATIC
EFI_STATUS
EFIAPI
EndGauge (
@@ -328,6 +333,7 @@ EndGauge ( @retval EFI_INVALIDE_PARAMETER GaugeDataEntry is NULL.
**/
+STATIC
EFI_STATUS
EFIAPI
GetGauge (
|