mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
R600: Coding style
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190110 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d7174719a9
commit
c3b5c042a4
@ -94,9 +94,8 @@ class R600TextureIntrinsicsReplacer :
|
||||
}
|
||||
|
||||
if (TextureType == TEXTURE_CUBE_ARRAY ||
|
||||
TextureType == TEXTURE_SHADOWCUBE_ARRAY) {
|
||||
TextureType == TEXTURE_SHADOWCUBE_ARRAY)
|
||||
CT[2] = 0;
|
||||
}
|
||||
|
||||
if (TextureType == TEXTURE_1D_ARRAY ||
|
||||
TextureType == TEXTURE_SHADOW1D_ARRAY) {
|
||||
@ -115,9 +114,8 @@ class R600TextureIntrinsicsReplacer :
|
||||
TextureType == TEXTURE_SHADOW2D ||
|
||||
TextureType == TEXTURE_SHADOWRECT ||
|
||||
TextureType == TEXTURE_SHADOW1D_ARRAY) &&
|
||||
!(hasLOD && useShadowVariant)) {
|
||||
!(hasLOD && useShadowVariant))
|
||||
SrcSelect[3] = 2;
|
||||
}
|
||||
}
|
||||
|
||||
void ReplaceCallInst(CallInst &I, FunctionType *FT, const char *Name,
|
||||
@ -260,9 +258,9 @@ public:
|
||||
}
|
||||
|
||||
void visitCallInst(CallInst &I) {
|
||||
if (!I.getCalledFunction()) {
|
||||
if (!I.getCalledFunction())
|
||||
return;
|
||||
}
|
||||
|
||||
StringRef Name = I.getCalledFunction()->getName();
|
||||
if (Name == "llvm.AMDGPU.tex") {
|
||||
ReplaceTexIntrinsic(I, false, TexSign, "llvm.R600.tex", "llvm.R600.texc");
|
||||
|
Loading…
Reference in New Issue
Block a user