The following code would not work before this patch, due to the inability to...
The following code would not work before this patch, due to the inability to take the address of a global object: void func1() { ... } int main(int argc, char** argv) { void (*pFunc)(); pFunc = &func1 pFunc(); ... } Phabricator review: http://reviews.llvm.org/D19368 llvm-svn: 267120
Loading
Please sign in to comment