diff options
author | Tom Stellard <[email protected]> | 2012-08-16 17:39:23 +0000 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-08-23 15:00:48 +0000 |
commit | e61c54cb6b220dea243568919a001e5dc7c01303 (patch) | |
tree | 497d4d801e650ddeec5286085c65924e51912b09 /src | |
parent | ead72204f1864008430189421663a5d07a02293b (diff) |
radeon/llvm: Mark JUMP as a pseudo instruction
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/radeon/R600Instructions.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeon/R600Instructions.td b/src/gallium/drivers/radeon/R600Instructions.td index 73c2002a382..9651b85a36d 100644 --- a/src/gallium/drivers/radeon/R600Instructions.td +++ b/src/gallium/drivers/radeon/R600Instructions.td @@ -122,7 +122,7 @@ def PRED_X : InstR600 <0, (outs R600_Predicate_Bit:$dst), let FlagOperandIdx = 3; } -let isTerminator = 1, isBranch = 1 in { +let isTerminator = 1, isBranch = 1, isPseudo = 1 in { def JUMP : InstR600 <0x10, (outs), (ins brtarget:$target, R600_Pred:$p), |