Index: src/IceTargetLoweringX8632.h |
diff --git a/src/IceTargetLoweringX8632.h b/src/IceTargetLoweringX8632.h |
index fefc7fd8d6f67180db99d08dacfd21bd19008021..4c0c24521bac4a4720d108dccedc4c98c1406237 100644 |
--- a/src/IceTargetLoweringX8632.h |
+++ b/src/IceTargetLoweringX8632.h |
@@ -196,6 +196,9 @@ protected: |
void _bsr(Variable *Dest, Operand *Src0) { |
Context.insert(InstX8632Bsr::create(Func, Dest, Src0)); |
} |
+ void _bswap(Variable *SrcDest) { |
+ Context.insert(InstX8632Bswap::create(Func, SrcDest)); |
+ } |
void _cdq(Variable *Dest, Operand *Src0) { |
Context.insert(InstX8632Cdq::create(Func, Dest, Src0)); |
} |
@@ -342,6 +345,9 @@ protected: |
void _ret(Variable *Src0 = NULL) { |
Context.insert(InstX8632Ret::create(Func, Src0)); |
} |
+ void _rol(Variable *Dest, Operand *Src0) { |
+ Context.insert(InstX8632Rol::create(Func, Dest, Src0)); |
+ } |
void _sar(Variable *Dest, Operand *Src0) { |
Context.insert(InstX8632Sar::create(Func, Dest, Src0)); |
} |