[Openmp-commits] [openmp] r308693 - Whitespace.

NAKAMURA Takumi via Openmp-commits openmp-commits at lists.llvm.org
Thu Jul 20 16:12:39 PDT 2017


Author: chapuni
Date: Thu Jul 20 16:12:39 2017
New Revision: 308693

URL: http://llvm.org/viewvc/llvm-project?rev=308693&view=rev
Log:
Whitespace.

Modified:
    openmp/trunk/libomptarget/test/lit.cfg

Modified: openmp/trunk/libomptarget/test/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/libomptarget/test/lit.cfg?rev=308693&r1=308692&r2=308693&view=diff
==============================================================================
--- openmp/trunk/libomptarget/test/lit.cfg (original)
+++ openmp/trunk/libomptarget/test/lit.cfg Thu Jul 20 16:12:39 2017
@@ -35,11 +35,11 @@ config.test_cflags = config.test_openmp_
     " -I " + config.test_source_root + \
     " -I " + config.omp_header_directory + \
     " -L " + config.library_dir;
-    
+
 if config.omp_host_rtl_directory:
     config.test_cflags = config.test_cflags + " -L " + \
-        config.omp_host_rtl_directory  
-    
+        config.omp_host_rtl_directory
+
 config.test_cflags = config.test_cflags + " " + config.test_extra_cflags
 
 # Setup environment to find dynamic library at runtime
@@ -56,7 +56,7 @@ else: # Unices
     append_dynamic_library_path('LD_LIBRARY_PATH', config.library_dir, ":")
     append_dynamic_library_path('LD_LIBRARY_PATH', \
         config.omp_host_rtl_directory, ":")
-    
+
 # substitutions
 # - for targets that exist in the system create the actual command.
 # - for valid targets that do not exist in the system, return false, so that the
@@ -74,17 +74,17 @@ for libomptarget_target in config.libomp
         config.substitutions.append(("%libomptarget-compile-run-and-check-" + \
             libomptarget_target, \
             "%libomptarget-compile-and-run-" + libomptarget_target + \
-            " | " + config.libomptarget_filecheck + " %s"))      
+            " | " + config.libomptarget_filecheck + " %s"))
         config.substitutions.append(("%libomptarget-compilexx-and-run-" + \
             libomptarget_target, \
             "%clangxx-" + libomptarget_target + " %s -o %t-" + \
-            libomptarget_target + " && %t-" + libomptarget_target))    
+            libomptarget_target + " && %t-" + libomptarget_target))
         config.substitutions.append(("%libomptarget-compile-and-run-" + \
             libomptarget_target, \
             "%clang-" + libomptarget_target + " %s -o %t-" + \
             libomptarget_target + " && %t-" + libomptarget_target))
         config.substitutions.append(("%clangxx-" + libomptarget_target, \
-            "%clangxx %cflags -fopenmp-targets=" + libomptarget_target))    
+            "%clangxx %cflags -fopenmp-targets=" + libomptarget_target))
         config.substitutions.append(("%clang-" + libomptarget_target, \
             "%clang %cflags -fopenmp-targets=" + libomptarget_target))
         config.substitutions.append(("%fcheck-" + libomptarget_target, \
@@ -113,4 +113,3 @@ config.substitutions.append(("%clangxx",
 config.substitutions.append(("%clang", config.test_c_compiler))
 config.substitutions.append(("%openmp_flag", config.test_openmp_flag))
 config.substitutions.append(("%cflags", config.test_cflags))
-




More information about the Openmp-commits mailing list