diff options
author | dim <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
commit | 952eddef9aff85b1e92626e89baaf7a360e2ac85 (patch) | |
tree | df8df0b0067b381eab470a3b8f28d14a552a6340 /test/Analysis/diagnostics/Inputs/include | |
parent | ea266cad53e3d49771fa38103913d3ec7a166694 (diff) | |
download | FreeBSD-src-952eddef9aff85b1e92626e89baaf7a360e2ac85.zip FreeBSD-src-952eddef9aff85b1e92626e89baaf7a360e2ac85.tar.gz |
Vendor import of clang release_34 branch r197841 (effectively, 3.4 RC3):
https://llvm.org/svn/llvm-project/cfe/branches/release_34@197841
Diffstat (limited to 'test/Analysis/diagnostics/Inputs/include')
-rw-r--r-- | test/Analysis/diagnostics/Inputs/include/report-issues-within-main-file.h | 43 | ||||
-rw-r--r-- | test/Analysis/diagnostics/Inputs/include/sys/queue.h | 1 |
2 files changed, 43 insertions, 1 deletions
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<typename _Tp> +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) |