commit | 6106df803dbfd6f1cdf277bacb5437c567ec607f | [log] [tgz] |
---|---|---|
author | Jim Stichnoth <stichnot@chromium.org> | Wed Dec 16 06:17:58 2015 -0800 |
committer | Jim Stichnoth <stichnot@chromium.org> | Wed Dec 16 06:17:58 2015 -0800 |
tree | 94d4bea19915aaabda79a495390c971e5afbaa3c | |
parent | e398428c3ef8ed2339c0f334dd30a7d3f0ed4b6e [diff] |
Subzero: Separate "\t" from "opcode" in asm emission. Instead of output like this: Str << "\tmov\t" << ... we prefer to use string concatenation: Str << "\t" "mov\t" << ... That way, "git grep -w mov" can be used for more precise pattern matching. BUG= none R=kschimpf@google.com Review URL: https://codereview.chromium.org/1523873003 .