mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-01 23:31:52 +00:00
add a missing operator that caused us to have to use (*MIB).foo everywhere.
llvm-svn: 130473
This commit is contained in:
parent
6c6e1622a8
commit
52b19aa2b5
@ -48,6 +48,7 @@ public:
|
||||
/// Allow automatic conversion to the machine instruction we are working on.
|
||||
///
|
||||
operator MachineInstr*() const { return MI; }
|
||||
MachineInstr *operator->() const { return MI; }
|
||||
operator MachineBasicBlock::iterator() const { return MI; }
|
||||
|
||||
/// addReg - Add a new virtual register operand...
|
||||
|
Loading…
x
Reference in New Issue
Block a user