diff options
Diffstat (limited to 'llvm/lib/CodeGen')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/FastISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp index ee23e7066a5..5492dcc268d 100644 --- a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp @@ -769,7 +769,7 @@ bool FastISel::SelectPatchpoint(const CallInst *I) { // Assume that the callee is a constant address or null pointer. // FIXME: handle function symbols in the future. - unsigned CalleeAddr; + uint64_t CalleeAddr; if (const auto *C = dyn_cast<IntToPtrInst>(Callee)) CalleeAddr = cast<ConstantInt>(C->getOperand(0))->getZExtValue(); else if (const auto *C = dyn_cast<ConstantExpr>(Callee)) { |

