summaryrefslogtreecommitdiff
path: root/benchmarks
diff options
context:
space:
mode:
authorJoshua Haberman <joshua@reverberate.org>2009-11-28 15:38:29 -0800
committerJoshua Haberman <joshua@reverberate.org>2009-11-28 15:38:29 -0800
commita95ab58e79c50b0927eae2b834d3de20a8effc36 (patch)
tree2cfb873d3a9d0976aca4ba6d9b1208335b725c3d /benchmarks
parent246a36998bc0e6800959ff76c2a8c76ff8de3561 (diff)
Overhaul defs to derive from a common base.
Diffstat (limited to 'benchmarks')
-rw-r--r--benchmarks/parsetostruct.upb_table.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/benchmarks/parsetostruct.upb_table.c b/benchmarks/parsetostruct.upb_table.c
index 4cf2b71..0a170de 100644
--- a/benchmarks/parsetostruct.upb_table.c
+++ b/benchmarks/parsetostruct.upb_table.c
@@ -31,15 +31,14 @@ static bool initialize()
upb_string_unref(fds);
struct upb_string *proto_name = upb_strdupc(MESSAGE_NAME);
- struct upb_symtab_entry e;
- if(!upb_context_lookup(c, proto_name, &e) || e.type != UPB_SYM_MESSAGE) {
+ def = upb_downcast_msgdef(upb_context_lookup(c, proto_name));
+ if(!def) {
fprintf(stderr, "Error finding symbol '" UPB_STRFMT "'.\n",
UPB_STRARG(proto_name));
return false;
}
upb_string_unref(proto_name);
- def = e.ref.msg;
for(int i = 0; i < NUM_MESSAGES; i++)
msgs[i] = upb_msg_new(def);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback