diff options
author | Devang Patel <dpatel@apple.com> | 2007-04-25 17:15:20 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2007-04-25 17:15:20 +0000 |
commit | 41968df51e11f581eb19c8f68a8cb2f4e8acc1c5 (patch) | |
tree | 7f6493a99543460670044da0411719bc0c6313d2 /include | |
parent | 65e203d713ba6a138d0238e19ddd707728b40f8f (diff) |
Remove unused function argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36441 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Transforms/Utils/PromoteMemToReg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Transforms/Utils/PromoteMemToReg.h b/include/llvm/Transforms/Utils/PromoteMemToReg.h index a17e98c1f5..e2ad4cd847 100644 --- a/include/llvm/Transforms/Utils/PromoteMemToReg.h +++ b/include/llvm/Transforms/Utils/PromoteMemToReg.h @@ -28,7 +28,7 @@ class AliasSetTracker; /// isAllocaPromotable - Return true if this alloca is legal for promotion. /// This is true if there are only loads and stores to the alloca... /// -bool isAllocaPromotable(const AllocaInst *AI, const TargetData &TD); +bool isAllocaPromotable(const AllocaInst *AI); /// PromoteMemToReg - Promote the specified list of alloca instructions into /// scalar registers, inserting PHI nodes as appropriate. This function makes |