Move target handling routines into the common directory.
git-svn-id: svn://svn.cc65.org/cc65/trunk@299 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -36,6 +36,7 @@
|
||||
/* common */
|
||||
#include "check.h"
|
||||
#include "exprdefs.h"
|
||||
#include "tgttrans.h"
|
||||
#include "xmalloc.h"
|
||||
|
||||
/* ca65 */
|
||||
@@ -46,7 +47,6 @@
|
||||
#include "objcode.h"
|
||||
#include "objfile.h"
|
||||
#include "symtab.h"
|
||||
#include "target.h"
|
||||
#include "toklist.h"
|
||||
#include "ulabel.h"
|
||||
#include "expr.h"
|
||||
@@ -484,7 +484,7 @@ static ExprNode* Factor (void)
|
||||
break;
|
||||
|
||||
case TOK_CHARCON:
|
||||
N = LiteralExpr ((unsigned char) XlatChar ((char)IVal));
|
||||
N = LiteralExpr (TgtTranslateChar (IVal));
|
||||
NextTok ();
|
||||
break;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user