summaryrefslogtreecommitdiff
path: root/include/llvm/Assembly
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2006-03-25 18:42:45 +0000
committerJim Laskey <jlaskey@mac.com>2006-03-25 18:42:45 +0000
commit0a868961d6623518d01d6e447c7812fcf73510df (patch)
tree0db534ce41cba1268e74342a2a77ea0b67b8d892 /include/llvm/Assembly
parente481b94bd568872d84bc9c9e01f28640844d5f7a (diff)
downloadllvm-0a868961d6623518d01d6e447c7812fcf73510df.tar.gz
llvm-0a868961d6623518d01d6e447c7812fcf73510df.tar.bz2
llvm-0a868961d6623518d01d6e447c7812fcf73510df.tar.xz
Unused function - easier to throw away than fix.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27123 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Assembly')
-rw-r--r--include/llvm/Assembly/AutoUpgrade.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/llvm/Assembly/AutoUpgrade.h b/include/llvm/Assembly/AutoUpgrade.h
index 0bc69a8a4e..2c959b8e8b 100644
--- a/include/llvm/Assembly/AutoUpgrade.h
+++ b/include/llvm/Assembly/AutoUpgrade.h
@@ -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