[compiler-rt] 887dda5 - [NFC][scudo] Replace size_t with uptr
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Sat May 22 23:02:35 PDT 2021
Author: Vitaly Buka
Date: 2021-05-22T22:55:53-07:00
New Revision: 887dda5dcdcf4a273f9c2885d147066343efd5b0
URL: https://github.com/llvm/llvm-project/commit/887dda5dcdcf4a273f9c2885d147066343efd5b0
DIFF: https://github.com/llvm/llvm-project/commit/887dda5dcdcf4a273f9c2885d147066343efd5b0.diff
LOG: [NFC][scudo] Replace size_t with uptr
Added:
Modified:
compiler-rt/lib/scudo/standalone/memtag.h
Removed:
################################################################################
diff --git a/compiler-rt/lib/scudo/standalone/memtag.h b/compiler-rt/lib/scudo/standalone/memtag.h
index cf1ec3bcc124..ec4b69834afc 100644
--- a/compiler-rt/lib/scudo/standalone/memtag.h
+++ b/compiler-rt/lib/scudo/standalone/memtag.h
@@ -110,7 +110,7 @@ inline void enableMemoryTagChecksTestOnly() {
}
class ScopedDisableMemoryTagChecks {
- size_t PrevTCO;
+ uptr PrevTCO;
public:
ScopedDisableMemoryTagChecks() {
More information about the llvm-commits
mailing list