Chromium Code Reviews| Index: src/IceInst.cpp |
| diff --git a/src/IceInst.cpp b/src/IceInst.cpp |
| index f336ba99b024db4c87c1c50f03d9483ec682be5a..e7acbd2b82b46667f225ac835cdfb9f6d947b7c6 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 */"; |
|
Jim Stichnoth
2016/01/13 18:28:26
Is the comment supposed to be "pad_to_end"? (two u
John
2016/01/13 20:48:03
Done.
|
| + 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; |
| } |
| } |