]> granicus.if.org Git - clang/commit
Rewrite calls to bitcast unprototyped functions when emitting a definition.
authorJohn McCall <rjmccall@apple.com>
Wed, 12 Dec 2012 22:21:47 +0000 (22:21 +0000)
committerJohn McCall <rjmccall@apple.com>
Wed, 12 Dec 2012 22:21:47 +0000 (22:21 +0000)
commita923c9783e8bd8edd26e56df9eaacd872c43e20e
treea0ddb0c19d2e9850c71a3f50cb98d3f63411ebce
parentb2c0887457ef509c1a93bcddf9ad8f5e87d9945e
Rewrite calls to bitcast unprototyped functions when emitting a definition.

My variadics patch, r169588, changed these calls to typically be
bitcasts rather than calls to a supposedly variadic function.
This totally subverted a hack where we intentionally dropped
excess arguments from such calls in order to appease the inliner
and a "warning" from the optimizer.  This patch extends the hack
to also work with bitcasts, as well as teaching it to rewrite
invokes.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@170034 91177308-0d34-0410-b5e6-96231b3b80d8
lib/CodeGen/CodeGenModule.cpp
test/CodeGen/exceptions.c
test/CodeGen/functions.c