Commit 33436473 by Jim Stichnoth

Subzero: Add newlines for bundle lock/unlock textual asm.

BUG= none R=sehr@chromium.org Review URL: https://codereview.chromium.org/1479873002 .
parent 26217e33
...@@ -857,6 +857,7 @@ void InstBundleLock::emit(const Cfg *Func) const { ...@@ -857,6 +857,7 @@ void InstBundleLock::emit(const Cfg *Func) const {
Str << "\talign_to_end"; Str << "\talign_to_end";
break; break;
} }
Str << "\n";
} }
void InstBundleLock::dump(const Cfg *Func) const { void InstBundleLock::dump(const Cfg *Func) const {
...@@ -878,6 +879,7 @@ void InstBundleUnlock::emit(const Cfg *Func) const { ...@@ -878,6 +879,7 @@ void InstBundleUnlock::emit(const Cfg *Func) const {
return; return;
Ostream &Str = Func->getContext()->getStrEmit(); Ostream &Str = Func->getContext()->getStrEmit();
Str << "\t.bundle_unlock"; Str << "\t.bundle_unlock";
Str << "\n";
} }
void InstBundleUnlock::dump(const Cfg *Func) const { void InstBundleUnlock::dump(const Cfg *Func) const {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment