mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-24 08:24:33 +00:00
[SparcV9] Add support for JIT in Sparc64.
With this change, all supported tests in test/ExecutionEngine pass in sparcv9. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199977 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -33,7 +33,22 @@ namespace llvm {
|
||||
reloc_sparc_pc22 = 4,
|
||||
|
||||
// reloc_sparc_pc22 - pc rel. 19 bits for branch with icc/xcc
|
||||
reloc_sparc_pc19 = 5
|
||||
reloc_sparc_pc19 = 5,
|
||||
|
||||
// reloc_sparc_h44 - 43-22 bits
|
||||
reloc_sparc_h44 = 6,
|
||||
|
||||
// reloc_sparc_m44 - 21-12 bits
|
||||
reloc_sparc_m44 = 7,
|
||||
|
||||
// reloc_sparc_l44 - lower 12 bits
|
||||
reloc_sparc_l44 = 8,
|
||||
|
||||
// reloc_sparc_hh - 63-42 bits
|
||||
reloc_sparc_hh = 9,
|
||||
|
||||
// reloc_sparc_hm - 41-32 bits
|
||||
reloc_sparc_hm = 10
|
||||
};
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user