Skip to content
Commit 5fc6f77b authored by Chris Lattner's avatar Chris Lattner
Browse files

Emit more efficient 64-bit operations when the RHS is a constant, and one

of the words of the constant is zeros.  For example:
  Y = and long X, 1234

now generates:
  Yl = and Xl, 1234
  Yh = 0

instead of:
  Yl = and Xl, 1234
  Yh = and Xh, 0

llvm-svn: 12685
parent b49608af
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment