Displaying 1 result from an estimated 1 matches for "internal_ret0_nw".
2018 Aug 23
2
[RFC] "Properly" Derive Function/Argument/Parameter Attributes
...---
; RUN: opt -S -functionattrs -enable-nonnull-arg-prop %s | FileCheck %s
;
; This is an evolved example to stress test SCC parameter attribute propagation.
; The SCC in this test is made up of the following six function, three of which
; are internal and three externally visible:
;
; static int* internal_ret0_nw(int *n0, int *w0);
; static int* internal_ret1_rw(int *r0, int *w0);
; static int* internal_ret1_rrw(int *r0, int *r1, int *w0);
; int* external_ret2_nrw(int *n0, int *r0, int *w0);
; int* external_sink_ret2_nrw(int *n0, int *r0, int *w0);
; int* external_source_ret2_nrw(int *n...