aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Module.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-06-27 21:09:10 +0000
committerChris Lattner <sabre@nondot.org>2008-06-27 21:09:10 +0000
commitbb0e2487185e401c7fca63d55e59343e060912a2 (patch)
treeb6b4f48495081a9a79f79bab892cc0db79f63780 /include/llvm/Module.h
parent25b825b3b848eeb25d49a51f0c78a16db7677465 (diff)
downloadexternal_llvm-bb0e2487185e401c7fca63d55e59343e060912a2.zip
external_llvm-bb0e2487185e401c7fca63d55e59343e060912a2.tar.gz
external_llvm-bb0e2487185e401c7fca63d55e59343e060912a2.tar.bz2
Add a new version of Module::getFunction that takes a const char* instead
of a std::string. This avoids copying the string to the heap in common cases. Patch by Pratik Solanki! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52834 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Module.h')
-rw-r--r--include/llvm/Module.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Module.h b/include/llvm/Module.h
index bce671d..56207a0 100644
--- a/include/llvm/Module.h
+++ b/include/llvm/Module.h
@@ -209,6 +209,7 @@ public:
/// getFunction - Look up the specified function in the module symbol table.
/// If it does not exist, return null.
Function *getFunction(const std::string &Name) const;
+ Function *getFunction(const char *Name) const;
/// @}
/// @name Global Variable Accessors