Fix a bug introduced in my previous checkin, where the state was not properly

restored after parsing "SBTarget".  Indentation matters in Python. :-)

llvm-svn: 130532
This commit is contained in:
Johnny Chen
2011-04-29 19:19:13 +00:00
parent 0f023fa4af
commit 31e4be06c4

View File

@@ -124,8 +124,9 @@ for line in content.splitlines():
if (state & DEFINING_EQUALITY):
print >> new_content, eq_def % (cls, e[cls], e[cls])
print >> new_content, ne_def
# Next state will be NORMAL.
state = NORMAL
# Next state will be NORMAL.
state = NORMAL
# Pass the original line of content to the ew_content.
print >> new_content, line