Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
ELF/Target.cpp | ||
---|---|---|
1435–1440 ↗ | (On Diff #60540) | Then you can make this to assert(Type == R_AMDGPU_REL32); write32le(Loc, Val); |
1444 ↗ | (On Diff #60540) | This runs before relocateOne, so it is better to do error checking here rather than later. if (Type == R_AMDGPU_REL32) return R_PC; error("do not know how to handle relocation"); |
test/ELF/amdgpu-relocs.s | ||
---|---|---|
11 ↗ | (On Diff #60540) | Do you really need all this just to generate a relocation? |
ELF/Target.cpp | ||
---|---|---|
1440–1442 ↗ | (On Diff #60787) | I made a slight modification to your suggestion to avoid "no return value" warnings for getRelExpr(). |