Skip to content

Commit 138b2a7

Browse files
committed
chore: clang-format
1 parent ac87434 commit 138b2a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
//
5252
//===----------------------------------------------------------------------===
5353

54-
// Define TailCallKind enum values to match LLVM's
54+
// Define LLVMRustTailCallKind enum values to match LLVM's
5555
enum LLVMRustTailCallKind {
5656
LLVMRustTailCallKindNone = 0,
5757
LLVMRustTailCallKindTail = 1,
@@ -1959,7 +1959,7 @@ extern "C" void LLVMRustSetNoSanitizeHWAddress(LLVMValueRef Global) {
19591959
}
19601960

19611961
extern "C" void LLVMSetTailCallKind(LLVMValueRef Call,
1962-
LLVMRustTailCallKind Kind) {
1962+
LLVMRustTailCallKind Kind) {
19631963
CallInst *CI = unwrap<CallInst>(Call);
19641964
switch (Kind) {
19651965
case LLVMRustTailCallKindNone:

0 commit comments

Comments
 (0)