* [PATCH] sparse, llvm: Fix symbol_type() for bitfields and enums
@ 2011-10-25 8:59 Pekka Enberg
0 siblings, 0 replies; only message in thread
From: Pekka Enberg @ 2011-10-25 8:59 UTC (permalink / raw)
To: linux-sparse; +Cc: Pekka Enberg, Christopher Li, Jeff Garzik, Linus Torvalds
This patch adds SYM_BITFIELD and SYM_ENUM support to symbol_type().
Cc: Christopher Li <sparse@chrisli.org>
Cc: Jeff Garzik <jgarzik@redhat.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
---
sparse-llvm.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/sparse-llvm.c b/sparse-llvm.c
index 5d1b79c..9f4586f 100644
--- a/sparse-llvm.c
+++ b/sparse-llvm.c
@@ -121,6 +121,8 @@ static LLVMTypeRef symbol_type(LLVMModuleRef module, struct symbol *sym)
LLVMTypeRef ret = NULL;
switch (sym->type) {
+ case SYM_BITFIELD:
+ case SYM_ENUM:
case SYM_NODE:
ret = symbol_type(module, sym->ctype.base_type);
break;
--
1.7.6.4
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2011-10-25 8:59 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-25 8:59 [PATCH] sparse, llvm: Fix symbol_type() for bitfields and enums Pekka Enberg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).