]> git.sur5r.net Git - cc65/blobdiff - src/cc65/pragma.c
Remove RAM-trampoline array support
[cc65] / src / cc65 / pragma.c
index 98f1a20d0be51c7fc7f1a4f0295d4a587c3a624a..2cd510ff83278ecbffd505554b7da98e12fc5ca9 100644 (file)
@@ -509,7 +509,7 @@ static void WrappedCallPragma (StrBuf* B)
     Entry = FindSym(Name);
 
     /* Check if the name is valid */
-    if (Entry && Entry->Flags & (SC_FUNC | SC_STORAGE)) {
+    if (Entry && Entry->Flags & SC_FUNC) {
 
         PushWrappedCall(Entry, Val);
         Entry->Flags |= SC_REF;