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 | 5ace8edfd6f8e22448ad8a93729708a598448444 (patch) | |
tree | 04d3eba3799a73d0d2f2150c2fa69f6fff6c7471 /llvm/lib/Target/X86/X86RegisterInfo.h | |
parent | 299b36fa72df72d83ab8efb22e728748f55a5c42 (diff) | |
download | bcm5719-llvm-5ace8edfd6f8e22448ad8a93729708a598448444.tar.gz bcm5719-llvm-5ace8edfd6f8e22448ad8a93729708a598448444.zip |
Constify getCompactUnwindRegNum.
llvm-svn: 134527
Diffstat (limited to 'llvm/lib/Target/X86/X86RegisterInfo.h')
-rw-r--r-- | llvm/lib/Target/X86/X86RegisterInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86RegisterInfo.h b/llvm/lib/Target/X86/X86RegisterInfo.h index a09c7eeed82..a12eb1297f7 100644 --- a/llvm/lib/Target/X86/X86RegisterInfo.h +++ b/llvm/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... /// |