summaryrefslogtreecommitdiff
path: root/libffi/src/debug.c
diff options
context:
space:
mode:
authorandreast <andreast@138bc75d-0d04-0410-961f-82ee72b054a4>2006-04-22 21:17:35 +0000
committerandreast <andreast@138bc75d-0d04-0410-961f-82ee72b054a4>2006-04-22 21:17:35 +0000
commit9a333c86fd37ca9cf564645ef0a97c8e2c9ba9ee (patch)
treee5d1292ca0d5f15af38f6aa116392b799fd3e3a4 /libffi/src/debug.c
parent07499df022fc60eef597a1cc566dea1710e17020 (diff)
downloadgcc-9a333c86fd37ca9cf564645ef0a97c8e2c9ba9ee.tar.gz
2006-04-22 Andreas Tobler <a.tobler@schweiz.ch>
* README: Remove notice about 'Crazy Comments'. * src/debug.c: Remove lint directives. Cleanup white spaces. * src/java_raw_api.c: Likewise. * src/prep_cif.c: Likewise. * src/raw_api.c: Likewise. * src/ffitest.c: Delete. No longer needed, all test cases migrated to the testsuite. * src/arm/ffi.c: Remove lint directives. * src/m32r/ffi.c: Likewise. * src/pa/ffi.c: Likewise. * src/powerpc/ffi.c: Likewise. * src/powerpc/ffi_darwin.c: Likewise. * src/sh/ffi.c: Likewise. * src/sh64/ffi.c: Likewise. * src/x86/ffi.c: Likewise. * testsuite/libffi.call/float2.c: Likewise. * testsuite/libffi.call/promotion.c: Likewise. * testsuite/libffi.call/struct1.c: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@113181 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libffi/src/debug.c')
-rw-r--r--libffi/src/debug.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/libffi/src/debug.c b/libffi/src/debug.c
index 98f1f9f0b4e..f15eb91abcb 100644
--- a/libffi/src/debug.c
+++ b/libffi/src/debug.c
@@ -31,7 +31,7 @@
void ffi_stop_here(void)
{
/* This function is only useful for debugging purposes.
- Place a breakpoint on ffi_stop_here to be notified of
+ Place a breakpoint on ffi_stop_here to be notified of
significant events. */
}
@@ -50,10 +50,9 @@ void ffi_type_test(ffi_type *a, char *file, int line)
{
FFI_ASSERT_AT(a != NULL, file, line);
- /*@-usedef@*/
FFI_ASSERT_AT(a->type <= FFI_TYPE_LAST, file, line);
FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->size > 0, file, line);
FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->alignment > 0, file, line);
FFI_ASSERT_AT(a->type != FFI_TYPE_STRUCT || a->elements != NULL, file, line);
- /*@=usedef@*/
+
}