diff options
author | Tom Stellard <[email protected]> | 2012-06-02 09:51:04 -0400 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-06-06 13:46:04 -0400 |
commit | f81e4663a766e71e907886640327abea4a0d78e2 (patch) | |
tree | 259c055e49e421d0a9ef792b38d7ba68ed15a080 /src/gallium/drivers/radeon/AMDILInstrInfo.h | |
parent | 1777c99bff40f160b09dd3c9708b0963c772610a (diff) |
radeon/llvm: Add isMov() to AMDILInstrInfo
This enables the CFGStructurizer to work without the AMDIL::MOV*
instructions.
Diffstat (limited to 'src/gallium/drivers/radeon/AMDILInstrInfo.h')
-rw-r--r-- | src/gallium/drivers/radeon/AMDILInstrInfo.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/AMDILInstrInfo.h b/src/gallium/drivers/radeon/AMDILInstrInfo.h index 211c881e7b9..7ea88348a9a 100644 --- a/src/gallium/drivers/radeon/AMDILInstrInfo.h +++ b/src/gallium/drivers/radeon/AMDILInstrInfo.h @@ -152,6 +152,8 @@ public: int64_t Imm) const = 0; virtual unsigned getIEQOpcode() const = 0; + + virtual bool isMov(unsigned Opcode) const = 0; }; } |