aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Function.h
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-01-26 08:01:30 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-01-26 08:01:30 +0000
commit0fc052c36f162852fd7c02acba73da0a2fce43fb (patch)
tree148f362202409ac251e3bb590328187926ad71f3 /include/llvm/Function.h
parent43276ee2803262aaa85bea23b1a100ded33b0ae9 (diff)
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/Function.h')
-rw-r--r--include/llvm/Function.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/llvm/Function.h b/include/llvm/Function.h
index a31e7f4834..803e5e8dec 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.
///