1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Unused function - easier to throw away than fix.

llvm-svn: 27123
This commit is contained in:
Jim Laskey 2006-03-25 18:42:45 +00:00
parent 5a27f03274
commit 576323f04f

View File

@ -36,14 +36,6 @@ namespace llvm {
/// @brief Remove overloaded intrinsic function names.
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
/// separate functions for each of the various argument sizes. This function
/// implements the auto-upgrade feature from old overloaded names to the new