Comment out debug code :)
authorChris Lattner <sabre@nondot.org>
Tue, 11 Jan 2005 23:21:30 +0000 (23:21 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 11 Jan 2005 23:21:30 +0000 (23:21 +0000)
commit837caa722376d3f9539d3e44e39ce7cd5a62b733
treeaf793cf83f667ec03f17fdee2cc8cdb522ed7175
parent5f75d9a88c32f4aa47cc8a91dd6e59fdce711cc3
Comment out debug code :)

Select [mem] += Val operations.  For constants, we used to get:

  mov %ECX, -32768
  add %ECX, DWORD PTR [l4_match_start]
  mov DWORD PTR [l4_match_start], %ECX

Now we get:

  add DWORD PTR [l4_match_start], -32768

For other values we used to get:

  mov %EBP, %EDI   ;; because the add destroys the value
  add %EBP, DWORD PTR [l4_input_len]
  mov DWORD PTR [l4_input_len], %EBP

now we get:

  add DWORD PTR [l4_input_len], %EDI

Both of these use less registers than the alternative, are faster and smaller.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19488 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/X86/X86ISelPattern.cpp