[FIX] Correct two C snippets in test cases

llvm-svn: 227407
This commit is contained in:
Johannes Doerfert 2015-01-29 00:50:46 +00:00
parent 71658bd15e
commit cf0e05a58f
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
; void f(int a[], int N, float *P) {
; int i;
; for (i = 0; i < N; ++i)
; if (*P != 0)
; if (P != 0)
; a[i] = i;
; }

View File

@ -4,7 +4,7 @@
; void f(int a[], int N, float *P, float *Q) {
; int i;
; for (i = 0; i < N; ++i)
; if ((P + 1) != Q)
; if (P != Q)
; a[i] = i;
; }
;