mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-19 04:32:19 +00:00
R600: Set correct InstrItinClass for instructions using *Helper classes
We weren't doing this before, so all instruction using the *Helper classes were considered for any ALU slot. This fixes a hang in the builtin-char-clz-1.0.generated.cl piglit test. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210703 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7ae77a1b1e
commit
beef5c58d7
@ -125,7 +125,7 @@ class R600_1OP <bits<11> inst, string opName, list<dag> pattern,
|
||||
class R600_1OP_Helper <bits<11> inst, string opName, SDPatternOperator node,
|
||||
InstrItinClass itin = AnyALU> :
|
||||
R600_1OP <inst, opName,
|
||||
[(set R600_Reg32:$dst, (node R600_Reg32:$src0))]
|
||||
[(set R600_Reg32:$dst, (node R600_Reg32:$src0))], itin
|
||||
>;
|
||||
|
||||
// If you add or change the operands for R600_2OP instructions, you must
|
||||
@ -161,10 +161,10 @@ class R600_2OP <bits<11> inst, string opName, list<dag> pattern,
|
||||
}
|
||||
|
||||
class R600_2OP_Helper <bits<11> inst, string opName, SDPatternOperator node,
|
||||
InstrItinClass itim = AnyALU> :
|
||||
InstrItinClass itin = AnyALU> :
|
||||
R600_2OP <inst, opName,
|
||||
[(set R600_Reg32:$dst, (node R600_Reg32:$src0,
|
||||
R600_Reg32:$src1))]
|
||||
R600_Reg32:$src1))], itin
|
||||
>;
|
||||
|
||||
// If you add our change the operands for R600_3OP instructions, you must
|
||||
|
Loading…
x
Reference in New Issue
Block a user