[llvm-commits] [llvm] r137716 - /llvm/trunk/include/llvm/MC/MCValue.h
Rafael Espindola
rafael.espindola at gmail.com
Tue Aug 16 06:53:50 PDT 2011
Author: rafael
Date: Tue Aug 16 08:53:50 2011
New Revision: 137716
URL: http://llvm.org/viewvc/llvm-project?rev=137716&view=rev
Log:
Remove unimplemented method. Fixes PR10658.
Thanks to Jonas Gafele for noticing.
Modified:
llvm/trunk/include/llvm/MC/MCValue.h
Modified: llvm/trunk/include/llvm/MC/MCValue.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/MC/MCValue.h?rev=137716&r1=137715&r2=137716&view=diff
==============================================================================
--- llvm/trunk/include/llvm/MC/MCValue.h (original)
+++ llvm/trunk/include/llvm/MC/MCValue.h Tue Aug 16 08:53:50 2011
@@ -46,16 +46,6 @@
/// isAbsolute - Is this an absolute (as opposed to relocatable) value.
bool isAbsolute() const { return !SymA && !SymB; }
- /// getAssociatedSection - For relocatable values, return the section the
- /// value is associated with.
- ///
- /// @result - The value's associated section, or null for external or constant
- /// values.
- //
- // FIXME: Switch to a tagged section, so this can return the tagged section
- // value.
- const MCSection *getAssociatedSection() const;
-
/// print - Print the value to the stream \arg OS.
void print(raw_ostream &OS, const MCAsmInfo *MAI) const;
More information about the llvm-commits
mailing list