This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Vim syntax file | |
" Language: Konoha | |
" Maintainer: Masahiro Ide <[email protected]> | |
" URL: http://sourceforge.jp/projects/konoha/ | |
" Last Change: 2009 July 09 | |
" Quit when a syntax file was already loaded | |
if version < 600 | |
syntax clear | |
elseif exists("b:current_syntax") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int main(int argc, char **argv) | |
{ | |
struct list { | |
void *next; | |
} _op = {0}, *op = &_op; | |
asm volatile("jmp *%0;":: "r"(*(void const*)op->next)); | |
return 0; | |
} | |
/* | |
* $ gcc-mp-4.4 jmp.c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: include/mk.h | |
=================================================================== | |
--- include/mk.h (revision 29) | |
+++ include/mk.h (working copy) | |
@@ -755,10 +755,19 @@ | |
#ifdef _DEBUG | |
int mk_execute_expr( MK_VM_STRUCT *vm, MK_NODE_EXPR *pTarget, int hasParent ); | |
#else | |
+static inline int mk_execute_expr( MK_VM_STRUCT *vm, MK_NODE_EXPR *pTarget, int hasParent ) | |
+{ |
NewerOlder