Summary: public This caused scary red output in buck. Reviewed By: akotulski Differential Revision: D2652135 fb-gh-sync-id: 52d6e7emaster
parent
c4b237e9f6
commit
2367b1c9ff
@ -1,43 +1,41 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2015 - present Facebook, Inc.
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* This source code is licensed under the BSD style license found in the
|
||||||
|
* LICENSE file in the root directory of this source tree. An additional grant
|
||||||
|
* of patent rights can be found in the PATENTS file in the same directory.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
int *set42(int* x) {
|
int *set42(int* x) {
|
||||||
|
*x = 42;
|
||||||
*x=42;
|
|
||||||
return x;
|
return x;
|
||||||
}
|
}
|
||||||
|
|
||||||
void nodpd () {
|
void nodpd () {
|
||||||
|
int w,*z;
|
||||||
int w,z;
|
z = set42(&w);
|
||||||
|
|
||||||
z=set42(&w);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void nodpd1 () {
|
void nodpd1 () {
|
||||||
|
|
||||||
int *y = malloc(sizeof(int));
|
int *y = malloc(sizeof(int));
|
||||||
int *z;
|
int *z;
|
||||||
z=set42(y);
|
z = set42(y);
|
||||||
free(y);
|
free(y);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void dpd () {
|
void dpd () {
|
||||||
|
|
||||||
int *y;
|
int *y;
|
||||||
int *z;
|
int *z;
|
||||||
z=set42(y);
|
z = set42(y);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void intraprocdpd () {
|
void intraprocdpd () {
|
||||||
|
|
||||||
int *y;
|
int *y;
|
||||||
int *z;
|
int *z;
|
||||||
*y=42;
|
*y = 42;
|
||||||
z=y;
|
z = y;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in new issue