From: Brian Norris Date: Tue, 16 Apr 2013 02:59:53 +0000 (-0700) Subject: clean out includes, etc. X-Git-Url: http://plrg.eecs.uci.edu/git/?p=cdsspec-compiler.git;a=commitdiff_plain;h=f9fe0087091f88deeb814d0768eecdfb1b51a94d clean out includes, etc. --- diff --git a/execution.cc b/execution.cc index 8285026..f0288d2 100644 --- a/execution.cc +++ b/execution.cc @@ -5,18 +5,15 @@ #include #include "execution.h" -#include "model.h" #include "action.h" #include "nodestack.h" #include "schedule.h" -#include "snapshot-interface.h" #include "common.h" #include "clockvector.h" #include "cyclegraph.h" #include "promise.h" #include "datarace.h" #include "threads-model.h" -#include "output.h" #include "bugmessage.h" #define INITIAL_THREAD_ID 0 @@ -31,7 +28,6 @@ struct model_snapshot_members { used_sequence_numbers(0), next_backtrack(NULL), bugs(), - stats(), failed_promise(false), too_many_reads(false), no_valid_reads(false), @@ -49,7 +45,6 @@ struct model_snapshot_members { modelclock_t used_sequence_numbers; ModelAction *next_backtrack; SnapVector bugs; - struct execution_stats stats; bool failed_promise; bool too_many_reads; bool no_valid_reads; diff --git a/execution.h b/execution.h index 6810fee..0f1e8ae 100644 --- a/execution.h +++ b/execution.h @@ -14,7 +14,6 @@ #include "config.h" #include "modeltypes.h" #include "stl-model.h" -#include "context.h" #include "params.h" /* Forward declaration */ diff --git a/model.cc b/model.cc index 8d5bc0f..48fa28a 100644 --- a/model.cc +++ b/model.cc @@ -1,6 +1,5 @@ #include #include -#include #include #include