Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Unified Diff: src/IceInst.cpp

Issue 1479873002: Subzero: Add newlines for bundle lock/unlock textual asm. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceInst.cpp
diff --git a/src/IceInst.cpp b/src/IceInst.cpp
index bd68e68e5749bf6ecd6475e17a54ccf65831d69e..294629620ddaacec790cad13c9ac62f5f208338a 100644
--- a/src/IceInst.cpp
+++ b/src/IceInst.cpp
@@ -857,6 +857,7 @@ void InstBundleLock::emit(const Cfg *Func) const {
Str << "\talign_to_end";
break;
}
+ Str << "\n";
}
void InstBundleLock::dump(const Cfg *Func) const {
@@ -878,6 +879,7 @@ void InstBundleUnlock::emit(const Cfg *Func) const {
return;
Ostream &Str = Func->getContext()->getStrEmit();
Str << "\t.bundle_unlock";
+ Str << "\n";
}
void InstBundleUnlock::dump(const Cfg *Func) const {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698