[ARM] Use symbolic register names in .cfi directives only with IAS (PR19110)
[oota-llvm.git] / include / llvm / MC / MCAsmInfo.h
index f039ba0db15607734f09eeaa7736cce684f5d799..0ecffa34bd623ce04e9322aa39203aa356ce5309 100644 (file)
@@ -311,10 +311,6 @@ namespace llvm {
     explicit MCAsmInfo();
     virtual ~MCAsmInfo();
 
-    // FIXME: move these methods to DwarfPrinter when the JIT stops using them.
-    static unsigned getSLEB128Size(int64_t Value);
-    static unsigned getULEB128Size(uint64_t Value);
-
     /// getPointerSize - Get the pointer size in bytes.
     unsigned getPointerSize() const {
       return PointerSize;
@@ -539,7 +535,7 @@ namespace llvm {
     bool useIntegratedAssembler() const { return UseIntegratedAssembler; }
 
     /// Set whether assembly (inline or otherwise) should be parsed.
-    void setUseIntegratedAssembler(bool Value) {
+    virtual void setUseIntegratedAssembler(bool Value) {
       UseIntegratedAssembler = Value;
     }
   };