Changeset eef8dfb for src/CodeTools/TrackLoc.cc
- Timestamp:
- Jan 7, 2021, 2:55:57 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 58fe85a
- Parents:
- bdfc032 (diff), 44e37ef (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/CodeTools/TrackLoc.cc
rbdfc032 reef8dfb 10 10 // Created On : Tues May 2 15:46:00 2017 11 11 // Last Modified By : Andrew Beach 12 // Last Modified On : Wed May 3 14:43:00 201713 // Update Count : 012 // Last Modified On : Fri Nov 27 18:00:00 2020 13 // Update Count : 1 14 14 // 15 15 … … 22 22 #include <string> // for operator<<, string 23 23 #include <typeindex> // for type_index 24 #include <vector> // for vector 24 25 25 26 #include "Common/PassVisitor.h" // for PassVisitor … … 37 38 CodeLocation *lastNode; 38 39 39 std::stack< CodeLocation * > parents;40 std::stack< CodeLocation *, std::vector< CodeLocation * > > parents; 40 41 public: 41 42 LocationPrinter(size_t printLevel) :
Note:
See TracChangeset
for help on using the changeset viewer.