aboutsummaryrefslogtreecommitdiff
path: root/compiler-rt
diff options
context:
space:
mode:
authorKirill Stoimenov <kstoimenov@google.com>2023-07-21 21:17:50 +0000
committerKirill Stoimenov <kstoimenov@google.com>2023-07-21 22:20:12 +0000
commit51e49e12e7cbbd195b4a97c55860858d9eddce58 (patch)
tree88139485cce3d2edb4d15dd26c8652855933c16e /compiler-rt
parentcfa032cea0a165ad803fbfdd17e805052e2f3640 (diff)
downloadllvm-51e49e12e7cbbd195b4a97c55860858d9eddce58.zip
llvm-51e49e12e7cbbd195b4a97c55860858d9eddce58.tar.gz
llvm-51e49e12e7cbbd195b4a97c55860858d9eddce58.tar.bz2
[HWASAN][LSAN] Replace cstdint with stdint.h
Reviewed By: brooksmoses, MaskRay Differential Revision: https://reviews.llvm.org/D155994
Diffstat (limited to 'compiler-rt')
-rw-r--r--compiler-rt/test/lsan/TestCases/user_pointer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/lsan/TestCases/user_pointer.cpp b/compiler-rt/test/lsan/TestCases/user_pointer.cpp
index c3df859..827a09c 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>