summaryrefslogtreecommitdiff
path: root/test/test5-03.txt
diff options
context:
space:
mode:
Diffstat (limited to 'test/test5-03.txt')
-rw-r--r--test/test5-03.txt31
1 files changed, 0 insertions, 31 deletions
diff --git a/test/test5-03.txt b/test/test5-03.txt
deleted file mode 100644
index 9664057..0000000
--- a/test/test5-03.txt
+++ /dev/null
@@ -1,31 +0,0 @@
-test5.c: In function 'void func1(int, int*, char)':
-test5.c:12:13: warning: Using parameter 'b' without checking for null pointer
- *b = 100;
- ^
-test5.c: In function 'void func2(int, int*, char)':
-test5.c:17:9: warning: Using parameter 'b' without checking for null pointer
- *(1 + b) = 200;
- ^
-test5.c: In function 'void func3(int, int*, char)':
-test5.c:22:9: warning: Using parameter 'b' without checking for null pointer
- *(1 + (1 + b)) = 300;
- ^
-test5.c: In function 'void func5(int, int*, char)':
-test5.c:28:12: warning: Using parameter 'b' without checking for null pointer
- *(var1 + b) = 400;
- ^
-test5.c: In function 'void func6(int, int*, char)':
-test5.c:33:10: warning: Using parameter 'b' without checking for null pointer
- int *var2 = b;
- ^
-test5.c:33:10: warning: Using parameter 'b' without checking for null pointer
-test5.c:33:10: warning: Using parameter 'b' without checking for null pointer
-test5.c:33:10: warning: Using parameter 'b' without checking for null pointer
-test5.c: In function 'void func7(int, int*, char)':
-test5.c:39:20: warning: Using parameter 'b' without checking for null pointer
- int *var3 = 12 + b;
- ^
-test5.c: In function 'void func8(int, int*, char)':
-test5.c:45:11: warning: Using parameter 'bptr' without checking for null pointer
- int **var4 = &bptr;
- ^