diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2007-01-26 08:01:30 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2007-01-26 08:01:30 +0000 |
| commit | 0fc052c36f162852fd7c02acba73da0a2fce43fb (patch) | |
| tree | 148f362202409ac251e3bb590328187926ad71f3 /include/llvm | |
| parent | 43276ee2803262aaa85bea23b1a100ded33b0ae9 (diff) | |
| download | external_llvm-0fc052c36f162852fd7c02acba73da0a2fce43fb.zip external_llvm-0fc052c36f162852fd7c02acba73da0a2fce43fb.tar.gz external_llvm-0fc052c36f162852fd7c02acba73da0a2fce43fb.tar.bz2 | |
For PR645:
Remove the Function::renameLocalSymbols function as it is no longer
needed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33522 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
| -rw-r--r-- | include/llvm/Function.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/llvm/Function.h b/include/llvm/Function.h index a31e7f4..803e5e8 100644 --- a/include/llvm/Function.h +++ b/include/llvm/Function.h @@ -111,13 +111,6 @@ public: unsigned getCallingConv() const { return CallingConvention; } void setCallingConv(unsigned CC) { CallingConvention = CC; } - /// renameLocalSymbols - This method goes through the Function's symbol table - /// and renames any symbols that conflict with symbols at global scope. This - /// is required before printing out to a textual form, to ensure that there is - /// no ambiguity when parsing. - void renameLocalSymbols(); - - /// deleteBody - This method deletes the body of the function, and converts /// the linkage to external. /// |
