diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2015-11-05 14:22:56 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2015-11-05 14:22:56 +0000 |
commit | 3c44b42e7077508e2115c8f43eaedd8bd58cdef1 (patch) | |
tree | 760f9fbe39cf3eb7840086fcb48f8cfb37b6cf54 | |
parent | 9e0cf38d9b0790177ea47f7afb9d6a2c72c5640a (diff) | |
download | bcm5719-llvm-3c44b42e7077508e2115c8f43eaedd8bd58cdef1.tar.gz bcm5719-llvm-3c44b42e7077508e2115c8f43eaedd8bd58cdef1.zip |
Fix a signed/unsigned mismatch warning; NFC.
llvm-svn: 252164
-rw-r--r-- | llvm/lib/Support/Windows/Signals.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/Windows/Signals.inc b/llvm/lib/Support/Windows/Signals.inc index 8d0b33c0838..f40ca72996a 100644 --- a/llvm/lib/Support/Windows/Signals.inc +++ b/llvm/lib/Support/Windows/Signals.inc @@ -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)) { |