mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-03 09:28:58 +00:00
Mac OS X X86-64 low 4G address not available.
llvm-svn: 40702
This commit is contained in:
parent
0fa6cdbff5
commit
69bbf3ed2a
@ -1016,16 +1016,16 @@ def : Pat<(i64 (X86Wrapper texternalsym:$dst)),
|
||||
|
||||
def : Pat<(store (i64 (X86Wrapper tconstpool:$src)), addr:$dst),
|
||||
(MOV64mi32 addr:$dst, tconstpool:$src)>,
|
||||
Requires<[SmallCode, IsStatic]>;
|
||||
Requires<[SmallCode, HasLow4G, IsStatic]>;
|
||||
def : Pat<(store (i64 (X86Wrapper tjumptable:$src)), addr:$dst),
|
||||
(MOV64mi32 addr:$dst, tjumptable:$src)>,
|
||||
Requires<[SmallCode, IsStatic]>;
|
||||
Requires<[SmallCode, HasLow4G, IsStatic]>;
|
||||
def : Pat<(store (i64 (X86Wrapper tglobaladdr:$src)), addr:$dst),
|
||||
(MOV64mi32 addr:$dst, tglobaladdr:$src)>,
|
||||
Requires<[SmallCode, IsStatic]>;
|
||||
Requires<[SmallCode, HasLow4G, IsStatic]>;
|
||||
def : Pat<(store (i64 (X86Wrapper texternalsym:$src)), addr:$dst),
|
||||
(MOV64mi32 addr:$dst, texternalsym:$src)>,
|
||||
Requires<[SmallCode, IsStatic]>;
|
||||
Requires<[SmallCode, HasLow4G, IsStatic]>;
|
||||
|
||||
// Calls
|
||||
// Direct PC relative function call for small code model. 32-bit displacement
|
||||
|
Loading…
Reference in New Issue
Block a user