From 952eddef9aff85b1e92626e89baaf7a360e2ac85 Mon Sep 17 00:00:00 2001 From: dim Date: Sun, 22 Dec 2013 00:07:40 +0000 Subject: Vendor import of clang release_34 branch r197841 (effectively, 3.4 RC3): https://llvm.org/svn/llvm-project/cfe/branches/release_34@197841 --- .../include/report-issues-within-main-file.h | 43 ++++++++++++++++++++++ .../diagnostics/Inputs/include/sys/queue.h | 1 - 2 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 test/Analysis/diagnostics/Inputs/include/report-issues-within-main-file.h (limited to 'test/Analysis/diagnostics/Inputs/include') diff --git a/test/Analysis/diagnostics/Inputs/include/report-issues-within-main-file.h b/test/Analysis/diagnostics/Inputs/include/report-issues-within-main-file.h new file mode 100644 index 0000000..9ecef34 --- /dev/null +++ b/test/Analysis/diagnostics/Inputs/include/report-issues-within-main-file.h @@ -0,0 +1,43 @@ +template +class auto_ptr { +private: + _Tp* _M_ptr; +public: + auto_ptr(_Tp* __p = 0) throw() : _M_ptr(__p) { } + ~auto_ptr() { delete _M_ptr; } +}; + +void cause_div_by_zero_in_header(int in) { + int h = 0; + h = in/h; + h++; +} + +void do_something (int in) { + in++; + in++; +} + +void cause_div_by_zero_in_header2(int in) { + int h2 = 0; + h2 = in/h2; + h2++; +} + +# define CALLS_BUGGY_FUNCTION2 cause_div_by_zero_in_header2(5); + +void cause_div_by_zero_in_header3(int in) { + int h3 = 0; + h3 = in/h3; + h3++; +} + +# define CALLS_BUGGY_FUNCTION3 cause_div_by_zero_in_header3(5); + +void cause_div_by_zero_in_header4(int in) { + int h4 = 0; + h4 = in/h4; + h4++; +} + +# define TAKE_CALL_AS_ARG(c) c; diff --git a/test/Analysis/diagnostics/Inputs/include/sys/queue.h b/test/Analysis/diagnostics/Inputs/include/sys/queue.h index e5698ed..2740e17 100644 --- a/test/Analysis/diagnostics/Inputs/include/sys/queue.h +++ b/test/Analysis/diagnostics/Inputs/include/sys/queue.h @@ -1,4 +1,3 @@ -#pragma clang system_header void free(void *); #define FREE_POINTER(x) free(x) -- cgit v1.1