mirror of
https://github.com/intel/llvm.git
synced 2026-01-28 01:04:49 +08:00
Fix a signed/unsigned mismatch warning; NFC.
llvm-svn: 252164
This commit is contained in:
@@ -217,7 +217,7 @@ static bool printStackTraceWithLLVMSymbolizer(llvm::raw_ostream &OS,
|
||||
Context.ContextFlags = CONTEXT_CONTROL | CONTEXT_INTEGER;
|
||||
|
||||
static void *StackTrace[256];
|
||||
int Depth = 0;
|
||||
size_t Depth = 0;
|
||||
while (fStackWalk64(NativeMachineType, hProcess, hThread, &StackFrame,
|
||||
&Context, 0, fSymFunctionTableAccess64,
|
||||
fSymGetModuleBase64, 0)) {
|
||||
|
||||
Reference in New Issue
Block a user