|
@@ -4121,7 +4121,7 @@ bool LLParser::ParseDINamespace(MDNode *&Result, bool IsDistinct) {
|
|
|
bool LLParser::ParseDIMacro(MDNode *&Result, bool IsDistinct) {
|
|
|
#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
|
|
|
REQUIRED(type, DwarfMacinfoTypeField, ); \
|
|
|
- REQUIRED(line, LineField, ); \
|
|
|
+ OPTIONAL(line, LineField, ); \
|
|
|
REQUIRED(name, MDStringField, ); \
|
|
|
OPTIONAL(value, MDStringField, );
|
|
|
PARSE_MD_FIELDS();
|
|
@@ -4137,7 +4137,7 @@ bool LLParser::ParseDIMacro(MDNode *&Result, bool IsDistinct) {
|
|
|
bool LLParser::ParseDIMacroFile(MDNode *&Result, bool IsDistinct) {
|
|
|
#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
|
|
|
OPTIONAL(type, DwarfMacinfoTypeField, (dwarf::DW_MACINFO_start_file)); \
|
|
|
- REQUIRED(line, LineField, ); \
|
|
|
+ OPTIONAL(line, LineField, ); \
|
|
|
REQUIRED(file, MDField, ); \
|
|
|
OPTIONAL(nodes, MDField, );
|
|
|
PARSE_MD_FIELDS();
|