summaryrefslogtreecommitdiffstats
path: root/clang/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
commit1f3a063f0035893d2befef25a6a2773ca6ad15d8 (patch)
treeb23e08c365fe761066c179f6674d9876a1a23767 /clang/lib/CodeGen/ABIInfo.h
parentb9e7c0aef62310f686f56756ec54a3c1e3dd9c5c (diff)
downloadbcm5719-llvm-1f3a063f0035893d2befef25a6a2773ca6ad15d8.tar.gz
bcm5719-llvm-1f3a063f0035893d2befef25a6a2773ca6ad15d8.zip
move the last hunk of getCoerceResult into the place
that needs it and remove getCoerceResult. llvm-svn: 109807
Diffstat (limited to 'clang/lib/CodeGen/ABIInfo.h')
-rw-r--r--clang/lib/CodeGen/ABIInfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/ABIInfo.h b/clang/lib/CodeGen/ABIInfo.h
index ade650580c3..c059cb8baab 100644
--- a/clang/lib/CodeGen/ABIInfo.h
+++ b/clang/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);
OpenPOWER on IntegriCloud