Use "e" constraint in place of "i" to match x86_64_general_operand

The fix for bug 3549 (commit d913bb7) was incomplete.  When the
x86_64_general_operand predicate is used, the corresponding operand
constraint must be "e" rather than "i".  The predicate controls only
whether the instruction pattern is selected in initial RTL generation.
The constraint controls how operands can be replaced by later phases
of the compiler, such as the "reload" steps done by register allocation.
The "i" constraint accepts a SYMBOL_REF under -fPIC while "e" does not.

BUG= https://code.google.com/p/nativeclient/issues/detail?id=3793
TEST= toolchain trybots
R=sehr@chromium.org, khim@chromium.org

Review URL: https://codereview.chromium.org/166573006
1 file changed