diff options
author | Andrey Churbanov <Andrey.Churbanov@intel.com> | 2016-07-08 14:35:41 +0000 |
---|---|---|
committer | Andrey Churbanov <Andrey.Churbanov@intel.com> | 2016-07-08 14:35:41 +0000 |
commit | 42211eb125ae008b135ed1207e172a95611f487c (patch) | |
tree | 2a9b0daead20e4b90ce31f95551a76c06ae44227 /openmp | |
parent | 5d9482d8877cafed5fb2920a9ed3bee43fe9f160 (diff) | |
download | bcm5719-llvm-42211eb125ae008b135ed1207e172a95611f487c.tar.gz bcm5719-llvm-42211eb125ae008b135ed1207e172a95611f487c.zip |
D22135: formatting change
llvm-svn: 274849
Diffstat (limited to 'openmp')
-rw-r--r-- | openmp/runtime/tools/lib/LibOMP.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openmp/runtime/tools/lib/LibOMP.pm b/openmp/runtime/tools/lib/LibOMP.pm index 06a371f6e06..012767e161e 100644 --- a/openmp/runtime/tools/lib/LibOMP.pm +++ b/openmp/runtime/tools/lib/LibOMP.pm @@ -17,7 +17,7 @@ use tools; sub empty($) { my ( $var ) = @_; - return not exists( $ENV{ $var } ) or not defined( $ENV{ $var } ) or $ENV{ $var } eq ""; + return (not exists($ENV{$var})) or (not defined($ENV{$var})) or ($ENV{$var} eq ""); }; # sub empty my ( $base, $out, $tmp ); |