Option --regex (-x) now also works for synthetic children:

- Added a test case in python-synth
Minor code improvements in categories, making them ready for adding new element types

llvm-svn: 136957
This commit is contained in:
Enrico Granata
2011-08-05 01:32:50 +00:00
parent 2536b51aae
commit f1af1ed6d2
5 changed files with 464 additions and 319 deletions

View File

@@ -8,10 +8,10 @@ typedef std::vector<std::string> string_vect;
typedef std::list<int> int_list;
typedef std::list<std::string> string_list;
typedef std::map<int, int> intint_map;
typedef std::map<std::string, int> strint_map;
typedef std::map<int, std::string> intstr_map;
typedef std::map<std::string, std::string> strstr_map;
#define intint_map std::map<int, int>
#define strint_map std::map<std::string, int>
#define intstr_map std::map<int, std::string>
#define strstr_map std::map<std::string, std::string>
struct foo
{