Instead of generating stuff like this:
authorChris Lattner <sabre@nondot.org>
Tue, 11 Jan 2005 06:36:20 +0000 (06:36 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 11 Jan 2005 06:36:20 +0000 (06:36 +0000)
commit51a263434a8ba6305ded4bff46204058eb679c8e
tree3a6befb39fdd61f44fd5d4153e3130d5270fe3dd
parent5a069f5a7e5976fe65e331de908234d08f916be8
Instead of generating stuff like this:

        mov %ECX, %EAX
        add %ECX, 32768
        mov %SI, WORD PTR [2*%ECX + l13_prev]

Generate this:

        mov %SI, WORD PTR [2*%ECX + l13_prev + 65536]

This occurs when you have a GEP instruction where an index is
"something + imm".

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