From f1f05b77db288aca62976963c5ce88ea160c2f47 Mon Sep 17 00:00:00 2001 From: Kristof Umann Date: Fri, 14 Sep 2018 11:20:16 +0000 Subject: [PATCH] [analyzer] Attempt to make a windows buildbot happy. Got an error that a cast is happening from a pointer type to long, which is smaller. llvm-svn: 342223 --- clang/test/Analysis/cxx-uninitialized-object-ptr-ref.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/Analysis/cxx-uninitialized-object-ptr-ref.cpp b/clang/test/Analysis/cxx-uninitialized-object-ptr-ref.cpp index 7669ac5..4f95f09 100644 --- a/clang/test/Analysis/cxx-uninitialized-object-ptr-ref.cpp +++ b/clang/test/Analysis/cxx-uninitialized-object-ptr-ref.cpp @@ -25,7 +25,7 @@ void fConcreteIntLocTest() { // nonloc::LocAsInteger tests. //===----------------------------------------------------------------------===// -using intptr_t = long; +using intptr_t = unsigned long long; struct LocAsIntegerTest { intptr_t ptr; // expected-note{{uninitialized pointee 'reinterpret_cast(this->ptr)'}} -- 2.7.4