Skip to content

Instantly share code, notes, and snippets.

@bmyerz
bmyerz / gist:4ac060c35f9dbd5f64fb
Last active August 29, 2015 14:19
code that is candidate for object flattening optimization
// pgas pseudocode, borrowing syntax from Chapel and UPC
struct global_ptr_string {
int len;
global const char* str;
global_ptr_string(...) { ... }
}
const global_ptr_string x(...);