comparison lwasm/pragma.c @ 401:bbe5401a9bf3

Fix inadvertent branch
author William Astle <lost@l-w.ca>
date Wed, 14 Oct 2015 19:15:41 -0600
parents 6153cb49403c
children c501b3ce39c8
comparison
equal deleted inserted replaced
400:d44c0ebab007 401:bbe5401a9bf3
70 { "ct", "noct", PRAGMA_CT }, 70 { "ct", "noct", PRAGMA_CT },
71 { "qrts", "noqrts", PRAGMA_QRTS }, 71 { "qrts", "noqrts", PRAGMA_QRTS },
72 { "m80ext", "nom80ext", PRAGMA_M80EXT }, 72 { "m80ext", "nom80ext", PRAGMA_M80EXT },
73 { "6809conv", "no6809conv", PRAGMA_6809CONV }, 73 { "6809conv", "no6809conv", PRAGMA_6809CONV },
74 { "6309conv", "no6309conv", PRAGMA_6309CONV }, 74 { "6309conv", "no6309conv", PRAGMA_6309CONV },
75 { "newsource", "nonewsource", PRAGMA_NEWSOURCE },
76 { "nooldsource", "oldsource", PRAGMA_NEWSOURCE },
75 { 0, 0, 0 } 77 { 0, 0, 0 }
76 }; 78 };
77 79
78 int parse_pragma_helper(char *p) 80 int parse_pragma_helper(char *p)
79 { 81 {