Skip to content
Snippets Groups Projects
Commit 88bb8d85 authored by Jim Laskey's avatar Jim Laskey
Browse files

Unused function - easier to throw away than fix.

llvm-svn: 27123
parent b434464d
No related branches found
No related tags found
No related merge requests found
...@@ -36,14 +36,6 @@ namespace llvm { ...@@ -36,14 +36,6 @@ namespace llvm {
/// @brief Remove overloaded intrinsic function names. /// @brief Remove overloaded intrinsic function names.
Function* UpgradeIntrinsicFunction(Function* F); Function* UpgradeIntrinsicFunction(Function* F);
Instruction* MakeUpgradedCall(
Function* F, ///< The function to call
const std::vector<Value*>& Params, ///< Operands of the call
BasicBlock* BB, ///< Basic block the caller will insert result to
bool isTailCall = false, ///< True if this is a tail call.
unsigned CallingConv = 0 ///< Calling convention to use
);
/// In LLVM 1.7, the overloading of intrinsic functions was replaced with /// In LLVM 1.7, the overloading of intrinsic functions was replaced with
/// separate functions for each of the various argument sizes. This function /// separate functions for each of the various argument sizes. This function
/// implements the auto-upgrade feature from old overloaded names to the new /// implements the auto-upgrade feature from old overloaded names to the new
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment