This patch was introduced by Jim Lewis but it have not been reviewed properly yet, OK to commit?
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
lib/CodeGen/SelectionDAG/DAGCombiner.cpp | ||
---|---|---|
3887 ↗ | (On Diff #95184) | Remove braces (style) |
3891 ↗ | (On Diff #95184) | Move this comment before the first if() - it seems to be common to both cases. |
test/CodeGen/X86/bswap_tree.ll | ||
4 ↗ | (On Diff #95184) | Regenerate the codegen with llvm\utils\update_llc_test_checks.py Also, lease use triples instead of arch/cpu: ; RUN: llc < %s -mtriple=i686-unknown | FileCheck %s ; RUN: llc < %s -mtriple=x86_64-unknown | FileCheck %s --check-prefix=CHECK64 |
test/CodeGen/X86/bswap_tree2.ll | ||
5 ↗ | (On Diff #95184) | Regenerate the codegen with llvm\utils\update_llc_test_checks.py Also, lease use triples instead of arch/cpu: ; RUN: llc < %s -mtriple=i686-unknown | FileCheck %s ; RUN: llc < %s -mtriple=x86_64-unknown | FileCheck %s --check-prefix=CHECK64 |
lib/CodeGen/SelectionDAG/DAGCombiner.cpp | ||
---|---|---|
3895 ↗ | (On Diff #95773) | Style guide says variables should be Capitalized. It might be clearer to call it MaskByteOffset or similar. If possible this should be done as a separate NFC commit. |
lib/CodeGen/SelectionDAG/DAGCombiner.cpp | ||
---|---|---|
3895 ↗ | (On Diff #95773) | +1 to making this "MaskByteOffset" and doing that now as NFC, so this patch will be minimized. Also, make the change for Opc0 = N0.getOpcode() ahead of this patch. That should leave us with the actual functional changes. |