diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-07-06 20:33:48 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-07-06 20:33:48 +0000 |
commit | 486dd90696545421c55346570b88fa03f6dd464f (patch) | |
tree | 213cf0b9464e945e41be43db2da65e64e737ae9f /lib/Target/X86/X86RegisterInfo.h | |
parent | b262799d49891b036daa00eddf51947487346c98 (diff) | |
download | external_llvm-486dd90696545421c55346570b88fa03f6dd464f.zip external_llvm-486dd90696545421c55346570b88fa03f6dd464f.tar.gz external_llvm-486dd90696545421c55346570b88fa03f6dd464f.tar.bz2 |
Constify getCompactUnwindRegNum.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134527 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86RegisterInfo.h')
-rw-r--r-- | lib/Target/X86/X86RegisterInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86RegisterInfo.h b/lib/Target/X86/X86RegisterInfo.h index a09c7ee..a12eb12 100644 --- a/lib/Target/X86/X86RegisterInfo.h +++ b/lib/Target/X86/X86RegisterInfo.h @@ -83,7 +83,7 @@ public: /// getCompactUnwindRegNum - This function maps the register to the number for /// compact unwind encoding. Return -1 if the register isn't valid. - int getCompactUnwindRegNum(unsigned RegNum) const; + int getCompactUnwindRegNum(unsigned RegNum, bool isEH) const; /// Code Generation virtual methods... /// |