diff options
author | Dan Gohman <gohman@apple.com> | 2008-08-19 18:07:49 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-08-19 18:07:49 +0000 |
commit | 6a36fe912c7a4c8228d415d6bf7a17ff5a548c95 (patch) | |
tree | ac9eb2c089a5b648d82386fd23d4c2f7851e8e3c /llvm/utils | |
parent | dbd5328238a95018f1be9047767847564db6d0b1 (diff) | |
download | bcm5719-llvm-6a36fe912c7a4c8228d415d6bf7a17ff5a548c95.tar.gz bcm5719-llvm-6a36fe912c7a4c8228d415d6bf7a17ff5a548c95.zip |
80 columns.
llvm-svn: 54998
Diffstat (limited to 'llvm/utils')
-rw-r--r-- | llvm/utils/TableGen/FastISelEmitter.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/utils/TableGen/FastISelEmitter.cpp b/llvm/utils/TableGen/FastISelEmitter.cpp index ae122016000..67dde85a377 100644 --- a/llvm/utils/TableGen/FastISelEmitter.cpp +++ b/llvm/utils/TableGen/FastISelEmitter.cpp @@ -210,8 +210,10 @@ void FastISelEmitter::run(std::ostream &OS) { // Ok, we found a pattern that we can handle. Remember it. { - InstructionMemo Memo = { Pattern.getDstPattern()->getOperator()->getName(), - DstRC }; + InstructionMemo Memo = { + Pattern.getDstPattern()->getOperator()->getName(), + DstRC + }; SimplePatterns[Operands][OpcodeName][VT] = Memo; } |