mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-19 20:34:38 +00:00
Fix spelling
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188506 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f0b274facf
commit
c34540aa86
@ -35,7 +35,7 @@ class R600TextureIntrinsicsReplacer :
|
|||||||
FunctionType *TexSign;
|
FunctionType *TexSign;
|
||||||
FunctionType *TexQSign;
|
FunctionType *TexQSign;
|
||||||
|
|
||||||
void getAdjustementFromTextureTarget(unsigned TextureType, bool hasLOD,
|
void getAdjustmentFromTextureTarget(unsigned TextureType, bool hasLOD,
|
||||||
unsigned SrcSelect[4], unsigned CT[4],
|
unsigned SrcSelect[4], unsigned CT[4],
|
||||||
bool &useShadowVariant) {
|
bool &useShadowVariant) {
|
||||||
enum TextureTypes {
|
enum TextureTypes {
|
||||||
@ -174,7 +174,7 @@ class R600TextureIntrinsicsReplacer :
|
|||||||
};
|
};
|
||||||
bool useShadowVariant;
|
bool useShadowVariant;
|
||||||
|
|
||||||
getAdjustementFromTextureTarget(TextureType, hasLOD, SrcSelect, CT,
|
getAdjustmentFromTextureTarget(TextureType, hasLOD, SrcSelect, CT,
|
||||||
useShadowVariant);
|
useShadowVariant);
|
||||||
|
|
||||||
ReplaceCallInst(I, FT, useShadowVariant?ShadowInt:VanillaInt, SrcSelect,
|
ReplaceCallInst(I, FT, useShadowVariant?ShadowInt:VanillaInt, SrcSelect,
|
||||||
@ -198,7 +198,7 @@ class R600TextureIntrinsicsReplacer :
|
|||||||
};
|
};
|
||||||
bool useShadowVariant;
|
bool useShadowVariant;
|
||||||
|
|
||||||
getAdjustementFromTextureTarget(TextureType, false, SrcSelect, CT,
|
getAdjustmentFromTextureTarget(TextureType, false, SrcSelect, CT,
|
||||||
useShadowVariant);
|
useShadowVariant);
|
||||||
|
|
||||||
ReplaceCallInst(I, TexQSign, "llvm.R600.txf", SrcSelect,
|
ReplaceCallInst(I, TexQSign, "llvm.R600.txf", SrcSelect,
|
||||||
|
@ -75,8 +75,8 @@ private:
|
|||||||
DebugLoc DbgLoc;
|
DebugLoc DbgLoc;
|
||||||
};
|
};
|
||||||
|
|
||||||
/// A helper class for numbering instructions in multible blocks.
|
/// A helper class for numbering instructions in multiple blocks.
|
||||||
/// Numbers starts at zero for each basic block.
|
/// Numbers start at zero for each basic block.
|
||||||
struct BlockNumbering {
|
struct BlockNumbering {
|
||||||
|
|
||||||
BlockNumbering(BasicBlock *Bb) : BB(Bb), Valid(false) {}
|
BlockNumbering(BasicBlock *Bb) : BB(Bb), Valid(false) {}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user