Fix whitespace.
authorMichael J. Spencer <bigcheesegs@gmail.com>
Fri, 24 Sep 2010 09:00:56 +0000 (09:00 +0000)
committerMichael J. Spencer <bigcheesegs@gmail.com>
Fri, 24 Sep 2010 09:00:56 +0000 (09:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114724 91177308-0d34-0410-b5e6-96231b3b80d8

cmake/config-ix.cmake
test/CMakeLists.txt
utils/lit/lit/TestFormats.py

index e3aa10cf7103474a8b2de71d0281a95187a565e2..cb83eab2a5b63f9f54f05648f22e361009c07ea8 100755 (executable)
@@ -202,15 +202,15 @@ elseif (LLVM_NATIVE_ARCH MATCHES "xcore")
 elseif (LLVM_NATIVE_ARCH MATCHES "msp430")
   set(LLVM_NATIVE_ARCH MSP430)
 else ()
-  message(STATUS 
+  message(STATUS
     "Unknown architecture ${LLVM_NATIVE_ARCH}; lli will not JIT code")
   set(LLVM_NATIVE_ARCH)
 endif ()
-  
+
 if (LLVM_NATIVE_ARCH)
   list(FIND LLVM_TARGETS_TO_BUILD ${LLVM_NATIVE_ARCH} NATIVE_ARCH_IDX)
   if (NATIVE_ARCH_IDX EQUAL -1)
-    message(STATUS 
+    message(STATUS
       "Native target ${LLVM_NATIVE_ARCH} is not selected; lli will not JIT code")
     set(LLVM_NATIVE_ARCH)
   else ()
index 086cadc189cc9188342630bb6240ef0f9dcef027..eab2992e809720b7f895b99afb349a619e9ccb57 100644 (file)
@@ -18,7 +18,7 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
 else() # Default for all other unix like systems.
   # CMake hardcodes the library locaction using rpath.
   # Therefore LD_LIBRARY_PATH is not required to run binaries in the
-  # build dir. We pass it anyways. 
+  # build dir. We pass it anyways.
   set(SHLIBPATH_VAR "LD_LIBRARY_PATH")
 endif()
 
index 7ffbd2bf766336ef16596d7d7dc0f3b11ae42446..ce0e9a3c3260dea6ee08b00803aeea9b7d54dd26 100644 (file)
@@ -44,7 +44,7 @@ class GoogleTest(object):
                 index += 1
             while len(nested_tests) > index:
                 nested_tests.pop()
-            
+
             ln = ln[index*2:]
             if ln.endswith('.'):
                 nested_tests.append(ln)
@@ -84,7 +84,7 @@ class GoogleTest(object):
 
         out, err, exitCode = TestRunner.executeCommand(
             cmd, env=test.config.environment)
-            
+
         if not exitCode:
             return Test.PASS,''