Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(215)

Unified Diff: src/cmd/gc/go.h

Issue 6610054: code review 6610054: cmd/gc: escape analysis to track flow of in to out para... (Closed)
Patch Set: diff -r 06ac3095d784 https://go.googlecode.com/hg/ Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« src/cmd/gc/esc.c ('K') | « src/cmd/gc/esc.c ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/cmd/gc/go.h
===================================================================
--- a/src/cmd/gc/go.h
+++ b/src/cmd/gc/go.h
@@ -215,7 +215,10 @@
EscHeap,
EscScope,
EscNone,
+ EscReturn,
EscNever,
+ EscBits = 4,
+ EscMask = (1<<EscBits) - 1,
};
struct Node
« src/cmd/gc/esc.c ('K') | « src/cmd/gc/esc.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b