aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linearize.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2012-01-30 19:02:05 +0200
committerPekka Enberg <penberg@kernel.org>2012-02-04 17:33:05 +0200
commitff527e2c72f71ac377d7d40713ac43712426fa13 (patch)
treee37bce275e6edc1480ad137f6a8892d12035dbd4 /linearize.h
parentb0b4886be5f668959b8c75c9c811059e07b1073a (diff)
downloadsparse-ff527e2c72f71ac377d7d40713ac43712426fa13.tar.gz
sparse, llvm: Make function declaration accessible to backend
On Tue, Aug 30, 2011 at 10:43 AM, Jeff Garzik <jeff@garzik.org> wrote: > * if someone knows how to access a function declaration, I can solve the > varargs problem Hmm. Right now we do not have access to the function declaration at linearize time. We've checked that the arguments match, and we've cast the arguments to the right types (evaluate.c), so the thinking was that you just use the arguments as-is. But if llvm needs the declaration of a function, we'd need to squirrel it away. Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Christopher Li <sparse@chrisli.org> Cc: Jeff Garzik <jgarzik@redhat.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> [ penberg@kernel.org: Fix validation/context.c breakage. ] Signed-off-by: Pekka Enberg <penberg@kernel.org>
Diffstat (limited to 'linearize.h')
-rw-r--r--linearize.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/linearize.h b/linearize.h
index 424ba970..61fbd831 100644
--- a/linearize.h
+++ b/linearize.h
@@ -116,6 +116,7 @@ struct instruction {
struct /* call */ {
pseudo_t func;
struct pseudo_list *arguments;
+ struct symbol *fntype;
};
struct /* context */ {
int increment;