ARM label operands can be quoted.
[oota-llvm.git] / lib / CodeGen / ELFCodeEmitter.h
index b5e9c844ec691fc88e01fdb4eeda091cc5124989..8671c674eecff005c60cf30bea7f95bb3dceb18e 100644 (file)
@@ -57,14 +57,14 @@ namespace llvm {
     bool finishFunction(MachineFunction &F);
 
     /// emitLabel - Emits a label
-    virtual void emitLabel(uint64_t LabelID) {
-      assert("emitLabel not implemented");
+    virtual void emitLabel(MCSymbol *Label) {
+      assert(0 && "emitLabel not implemented");
     }
 
     /// getLabelAddress - Return the address of the specified LabelID, 
     /// only usable after the LabelID has been emitted.
-    virtual uintptr_t getLabelAddress(uint64_t Label) const {
-      assert("getLabelAddress not implemented");
+    virtual uintptr_t getLabelAddress(MCSymbol *Label) const {
+      assert(0 && "getLabelAddress not implemented");
       return 0;
     }