| OLD | NEW |
| 1 //===-- MipsFixupKinds.h - Mips Specific Fixup Entries ----------*- C++ -*-===// | 1 //===-- MipsFixupKinds.h - Mips Specific Fixup Entries ----------*- C++ -*-===// |
| 2 // | 2 // |
| 3 // The LLVM Compiler Infrastructure | 3 // The LLVM Compiler Infrastructure |
| 4 // | 4 // |
| 5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
| 6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
| 7 // | 7 // |
| 8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
| 9 | 9 |
| 10 #ifndef LLVM_MIPS_MIPSFIXUPKINDS_H | 10 #ifndef LLVM_MIPS_MIPSFIXUPKINDS_H |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 | 121 |
| 122 // resulting in - R_MIPS_GOT_LO16 | 122 // resulting in - R_MIPS_GOT_LO16 |
| 123 fixup_Mips_GOT_LO16, | 123 fixup_Mips_GOT_LO16, |
| 124 | 124 |
| 125 // resulting in - R_MIPS_CALL_HI16 | 125 // resulting in - R_MIPS_CALL_HI16 |
| 126 fixup_Mips_CALL_HI16, | 126 fixup_Mips_CALL_HI16, |
| 127 | 127 |
| 128 // resulting in - R_MIPS_CALL_LO16 | 128 // resulting in - R_MIPS_CALL_LO16 |
| 129 fixup_Mips_CALL_LO16, | 129 fixup_Mips_CALL_LO16, |
| 130 | 130 |
| 131 // @LOCALMOD-START |
| 132 fixup_Mips_NACL_LONG_BRANCH_HI16, |
| 133 fixup_Mips_NACL_LONG_BRANCH_LO16, |
| 134 // @LOCALMOD-END |
| 135 |
| 131 // Marker | 136 // Marker |
| 132 LastTargetFixupKind, | 137 LastTargetFixupKind, |
| 133 NumTargetFixupKinds = LastTargetFixupKind - FirstTargetFixupKind | 138 NumTargetFixupKinds = LastTargetFixupKind - FirstTargetFixupKind |
| 134 }; | 139 }; |
| 135 } // namespace Mips | 140 } // namespace Mips |
| 136 } // namespace llvm | 141 } // namespace llvm |
| 137 | 142 |
| 138 | 143 |
| 139 #endif // LLVM_MIPS_MIPSFIXUPKINDS_H | 144 #endif // LLVM_MIPS_MIPSFIXUPKINDS_H |
| OLD | NEW |