summaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/ABIInfo.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-07-29 21:42:50 +0000
committerChris Lattner <sabre@nondot.org>2010-07-29 21:42:50 +0000
commiteb518b4b89e4134b21975530809697142f69b779 (patch)
tree7de176fe6121df00b41a41caf63cc52b3732bb05 /lib/CodeGen/ABIInfo.h
parent1cce1958b127f1722a18825b2cd793ce21246911 (diff)
move the last hunk of getCoerceResult into the place
that needs it and remove getCoerceResult. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@109807 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/ABIInfo.h')
-rw-r--r--lib/CodeGen/ABIInfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/ABIInfo.h b/lib/CodeGen/ABIInfo.h
index ade650580c..c059cb8baa 100644
--- a/lib/CodeGen/ABIInfo.h
+++ b/lib/CodeGen/ABIInfo.h
@@ -78,8 +78,8 @@ namespace clang {
static ABIArgInfo getDirect(const llvm::Type *T = 0) {
return ABIArgInfo(Direct, T);
}
- static ABIArgInfo getExtend() {
- return ABIArgInfo(Extend);
+ static ABIArgInfo getExtend(const llvm::Type *T = 0) {
+ return ABIArgInfo(Extend, T);
}
static ABIArgInfo getIgnore() {
return ABIArgInfo(Ignore);