Merge "Silence expandtypeattribute build-time warning." am: 969d8cc4dd

am: e5017318c6

Change-Id: I8fd310b4b3ba5da15826245b63276612cf5cbcfc
This commit is contained in:
Tri Vo 2018-02-28 01:54:31 +00:00 committed by android-build-merger
commit 067bc406fa

View file

@ -77,6 +77,9 @@ class MiniCilParser:
self._parseTypeattribute(stmt)
elif re.match(r"typeattributeset\s+.+", stmt):
self._parseTypeattributeset(stmt)
elif re.match(r"expandtypeattribute\s+.+", stmt):
# To silence the build warnings.
pass
else:
m = re.match(r"(\w+)\s+.+", stmt)
ret = "Warning: Unknown statement type (" + m.group(1) + ") in "