gallivm: Fix white-space.
authorJosé Fonseca <jfonseca@vmware.com>
Wed, 22 Oct 2014 14:40:53 +0000 (15:40 +0100)
committerJosé Fonseca <jfonseca@vmware.com>
Thu, 23 Oct 2014 09:19:33 +0000 (10:19 +0100)
Replace tabs with spaces.

Reviewed-by: Roland Scheidegger <sroland@vmware.com>
src/gallium/auxiliary/gallivm/lp_bld_misc.cpp

index ab3b3c9fbdfb1582051a823030f2ad1354e9154d..a1d294083117ad8826e42237ba6cf6b66eee09db 100644 (file)
@@ -132,7 +132,7 @@ lp_set_load_alignment(LLVMValueRef Inst,
 extern "C"
 void
 lp_set_store_alignment(LLVMValueRef Inst,
-                      unsigned Align)
+                       unsigned Align)
 {
    llvm::unwrap<llvm::StoreInst>(Inst)->setAlignment(Align);
 }
@@ -322,14 +322,14 @@ class ShaderMemoryManager : public DelegatingJITMemoryManager {
           * Deallocate things as previously requested and
           * free shared manager when no longer used.
           */
-        Vec::iterator i;
+         Vec::iterator i;
 
-        assert(TheMM);
-        for ( i = FunctionBody.begin(); i != FunctionBody.end(); ++i )
-           TheMM->deallocateFunctionBody(*i);
+         assert(TheMM);
+         for ( i = FunctionBody.begin(); i != FunctionBody.end(); ++i )
+            TheMM->deallocateFunctionBody(*i);
 #if HAVE_LLVM < 0x0304
-        for ( i = ExceptionTable.begin(); i != ExceptionTable.end(); ++i )
-           TheMM->deallocateExceptionTable(*i);
+         for ( i = ExceptionTable.begin(); i != ExceptionTable.end(); ++i )
+            TheMM->deallocateExceptionTable(*i);
 #endif
       }
    };