[svn:parrot] r46258 - trunk/src/packfile
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Mon May 3 23:18:58 UTC 2010
Author: mikehh
Date: Mon May 3 23:18:58 2010
New Revision: 46258
URL: https://trac.parrot.org/parrot/changeset/46258
Log:
fix codetest failure - unused assertmacros (headerizer does not seem to remove definitions/macros)
Modified:
trunk/src/packfile/pf_items.c
Modified: trunk/src/packfile/pf_items.c
==============================================================================
--- trunk/src/packfile/pf_items.c Mon May 3 22:58:24 2010 (r46257)
+++ trunk/src/packfile/pf_items.c Mon May 3 23:18:58 2010 (r46258)
@@ -153,14 +153,6 @@
static opcode_t fetch_op_le_8(ARGIN(const unsigned char *b))
__attribute__nonnull__(1);
-PARROT_WARN_UNUSED_RESULT
-static opcode_t fetch_op_mixed_be(ARGIN(const unsigned char *b))
- __attribute__nonnull__(1);
-
-PARROT_WARN_UNUSED_RESULT
-static opcode_t fetch_op_mixed_le(ARGIN(const unsigned char *b))
- __attribute__nonnull__(1);
-
#define ASSERT_ARGS_cvt_num12_num16 __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
PARROT_ASSERT_ARG(dest) \
, PARROT_ASSERT_ARG(src))
@@ -211,10 +203,6 @@
PARROT_ASSERT_ARG(b))
#define ASSERT_ARGS_fetch_op_le_8 __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
PARROT_ASSERT_ARG(b))
-#define ASSERT_ARGS_fetch_op_mixed_be __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
- PARROT_ASSERT_ARG(b))
-#define ASSERT_ARGS_fetch_op_mixed_le __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
- PARROT_ASSERT_ARG(b))
/* Don't modify between HEADERIZER BEGIN / HEADERIZER END. Your changes will be lost. */
/* HEADERIZER END: static */
More information about the parrot-commits
mailing list