diff options
author | Chris Lattner <sabre@nondot.org> | 2010-02-11 21:27:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-02-11 21:27:18 +0000 |
commit | 8d31de62680f28ac13594a14dde46216c82a3708 (patch) | |
tree | f9491f19427b17ceb380d54a9de8ff2ae443771b /include | |
parent | 9637dd50f46bde79091c86c062b58bf406ac2a25 (diff) |
make getFixupKindInfo return a const reference, allowing
the tables to be const. Teach MCCodeEmitter to handle
the target-indep kinds so that we don't crash on them.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95924 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/MC/MCCodeEmitter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/MC/MCCodeEmitter.h b/include/llvm/MC/MCCodeEmitter.h index 5565945f5a..fe1aff4f8c 100644 --- a/include/llvm/MC/MCCodeEmitter.h +++ b/include/llvm/MC/MCCodeEmitter.h @@ -56,7 +56,7 @@ public: virtual unsigned getNumFixupKinds() const = 0; /// getFixupKindInfo - Get information on a fixup kind. - virtual MCFixupKindInfo &getFixupKindInfo(MCFixupKind Kind) const = 0; + virtual const MCFixupKindInfo &getFixupKindInfo(MCFixupKind Kind) const; /// @} |