mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 04:58:05 +02:00
gallivm: Fix white-space.
Replace tabs with spaces. Reviewed-by: Roland Scheidegger <sroland@vmware.com>
This commit is contained in:
parent
013ff2fae1
commit
3fd220e2eb
1 changed files with 7 additions and 7 deletions
|
|
@ -132,7 +132,7 @@ lp_set_load_alignment(LLVMValueRef Inst,
|
||||||
extern "C"
|
extern "C"
|
||||||
void
|
void
|
||||||
lp_set_store_alignment(LLVMValueRef Inst,
|
lp_set_store_alignment(LLVMValueRef Inst,
|
||||||
unsigned Align)
|
unsigned Align)
|
||||||
{
|
{
|
||||||
llvm::unwrap<llvm::StoreInst>(Inst)->setAlignment(Align);
|
llvm::unwrap<llvm::StoreInst>(Inst)->setAlignment(Align);
|
||||||
}
|
}
|
||||||
|
|
@ -322,14 +322,14 @@ class ShaderMemoryManager : public DelegatingJITMemoryManager {
|
||||||
* Deallocate things as previously requested and
|
* Deallocate things as previously requested and
|
||||||
* free shared manager when no longer used.
|
* free shared manager when no longer used.
|
||||||
*/
|
*/
|
||||||
Vec::iterator i;
|
Vec::iterator i;
|
||||||
|
|
||||||
assert(TheMM);
|
assert(TheMM);
|
||||||
for ( i = FunctionBody.begin(); i != FunctionBody.end(); ++i )
|
for ( i = FunctionBody.begin(); i != FunctionBody.end(); ++i )
|
||||||
TheMM->deallocateFunctionBody(*i);
|
TheMM->deallocateFunctionBody(*i);
|
||||||
#if HAVE_LLVM < 0x0304
|
#if HAVE_LLVM < 0x0304
|
||||||
for ( i = ExceptionTable.begin(); i != ExceptionTable.end(); ++i )
|
for ( i = ExceptionTable.begin(); i != ExceptionTable.end(); ++i )
|
||||||
TheMM->deallocateExceptionTable(*i);
|
TheMM->deallocateExceptionTable(*i);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue