Skip to content

Commit

Permalink
correct LLVMRustDIBuilderCreateOpLLVMFragment return type
Browse files Browse the repository at this point in the history
  • Loading branch information
klensy committed Oct 28, 2024
1 parent 1763637 commit 2b326e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1231,7 +1231,7 @@ extern "C" uint64_t LLVMRustDIBuilderCreateOpPlusUconst() {
return dwarf::DW_OP_plus_uconst;
}

extern "C" int64_t LLVMRustDIBuilderCreateOpLLVMFragment() {
extern "C" uint64_t LLVMRustDIBuilderCreateOpLLVMFragment() {
return dwarf::DW_OP_LLVM_fragment;
}

Expand Down

0 comments on commit 2b326e3

Please sign in to comment.