statistics.cc (8229:78bf55f23338) statistics.cc (8231:51cf7f3cf9ac)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 116 unchanged lines hidden (view full) ---

125
126int debug_break_id = -1;
127
128Info::Info()
129 : flags(none), precision(-1), prereq(0), storageParams(NULL)
130{
131 id = id_count++;
132 if (debug_break_id >= 0 and debug_break_id == id)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 116 unchanged lines hidden (view full) ---

125
126int debug_break_id = -1;
127
128Info::Info()
129 : flags(none), precision(-1), prereq(0), storageParams(NULL)
130{
131 id = id_count++;
132 if (debug_break_id >= 0 and debug_break_id == id)
133 debug_break();
133 Debug::breakpoint();
134}
135
136Info::~Info()
137{
138}
139
140void
141Info::setName(const string &name)

--- 322 unchanged lines hidden ---
134}
135
136Info::~Info()
137{
138}
139
140void
141Info::setName(const string &name)

--- 322 unchanged lines hidden ---