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

Unified Diff: src/IceInst.cpp

Issue 1559243002: Suzero. X8664. NaCl Sandboxing. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fixes filetype=asm; addresses comments. Created 4 years, 11 months 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 | « src/IceInst.h ('k') | src/IceInstX8632.cpp » ('j') | 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 f336ba99b024db4c87c1c50f03d9483ec682be5a..1db9cee5261d3854c1ca9fcd5d6294cbf1e0e9c4 100644
--- a/src/IceInst.cpp
+++ b/src/IceInst.cpp
@@ -858,6 +858,10 @@ void InstBundleLock::emit(const Cfg *Func) const {
Str << "\t"
"align_to_end";
break;
+ case Opt_PadToEnd:
+ Str << "\t"
+ "align_to_end /* pad_to_end */";
+ break;
}
Str << "\n";
}
@@ -873,6 +877,9 @@ void InstBundleLock::dump(const Cfg *Func) const {
case Opt_AlignToEnd:
Str << " align_to_end";
break;
+ case Opt_PadToEnd:
+ Str << " pad_to_end";
+ break;
}
}
« no previous file with comments | « src/IceInst.h ('k') | src/IceInstX8632.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698