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
Loading
Please register or sign in to comment