[PATCH] D20769: [IPRA] Interprocedural Register Allocation
Mehdi AMINI via llvm-commits
llvm-commits at lists.llvm.org
Sun May 29 23:15:58 PDT 2016
mehdi_amini added inline comments.
================
Comment at: include/llvm/CodeGen/MachineOperand.h:146
@@ -147,1 +145,3 @@
+ unsigned RegNo; // For MO_Register.
+ unsigned OffsetLo; // Matches Contents.OffsetedInfo.OffsetHi.
} SmallContents;
----------------
It is not good practice to clang-format the whole file as part of your patch. You should only format the patch of the file you changed (git clang-format handles it automatically, some text editor as well, or you can give a range on the command line, or even copy paster on stdin the range you want to format).
http://reviews.llvm.org/D20769
More information about the llvm-commits
mailing list