hipcc: Fix warning when HCC_AMDGPU_TARGET is not defined

Change-Id: I5cc6b0e9fb23ec78152d8bcfe9e7511e2fe91055


[ROCm/hip commit: 4ae1ea8143]
Αυτή η υποβολή περιλαμβάνεται σε:
Maneesh Gupta
2017-03-15 12:03:05 +05:30
γονέας 366a5e09a1
υποβολή 1afa3d021b
+22 -19
Προβολή Αρχείου
@@ -326,27 +326,30 @@ foreach $arg (@ARGV)
}
$toolArgs .= " $arg" unless $swallowArg;
}
foreach my $target (split(/,/, $ENV{HCC_AMDGPU_TARGET}))
if(defined $ENV{HCC_AMDGPU_TARGET})
{
if($target eq 'gfx701')
foreach my $target (split(/,/, $ENV{HCC_AMDGPU_TARGET}))
{
$target_gfx701 = 1;
}
if($target eq 'gfx801')
{
$target_gfx801 = 1;
}
if($target eq 'gfx802')
{
$target_gfx802 = 1;
}
if($target eq 'gfx803')
{
$target_gfx803 = 1;
}
if($target eq 'gfx900')
{
$target_gfx900 = 1;
if($target eq 'gfx701')
{
$target_gfx701 = 1;
}
if($target eq 'gfx801')
{
$target_gfx801 = 1;
}
if($target eq 'gfx802')
{
$target_gfx802 = 1;
}
if($target eq 'gfx803')
{
$target_gfx803 = 1;
}
if($target eq 'gfx900')
{
$target_gfx900 = 1;
}
}
}
if ($target_gfx701 eq 0 and $target_gfx801 eq 0 and $target_gfx802 eq 0 and $target_gfx803 eq 0 and $target_gfx900 eq 0)