[compiler-rt] 51e49e1 - [HWASAN][LSAN] Replace cstdint with stdint.h
Kirill Stoimenov via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 21 15:20:23 PDT 2023
Author: Kirill Stoimenov
Date: 2023-07-21T22:20:12Z
New Revision: 51e49e12e7cbbd195b4a97c55860858d9eddce58
URL: https://github.com/llvm/llvm-project/commit/51e49e12e7cbbd195b4a97c55860858d9eddce58
DIFF: https://github.com/llvm/llvm-project/commit/51e49e12e7cbbd195b4a97c55860858d9eddce58.diff
LOG: [HWASAN][LSAN] Replace cstdint with stdint.h
Reviewed By: brooksmoses, MaskRay
Differential Revision: https://reviews.llvm.org/D155994
Added:
Modified:
compiler-rt/test/lsan/TestCases/user_pointer.cpp
Removed:
################################################################################
diff --git a/compiler-rt/test/lsan/TestCases/user_pointer.cpp b/compiler-rt/test/lsan/TestCases/user_pointer.cpp
index c3df859101e9e7..827a09c8625d40 100644
--- a/compiler-rt/test/lsan/TestCases/user_pointer.cpp
+++ b/compiler-rt/test/lsan/TestCases/user_pointer.cpp
@@ -2,7 +2,7 @@
// RUN: %clang_lsan %s -o %t
// RUN: %run %t 2>&1
-#include <cstdint>
+#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
More information about the llvm-commits
mailing list