Fix Gcc warnings: warning: multi-line comment [-Wcomment]

This commit is contained in:
jvoisin 2014-06-06 13:34:26 +02:00
parent 3affd8ecb2
commit dc3510e942

View File

@ -3,13 +3,13 @@
static const char *r_debug_native_reg_profile(RDebug *dbg) { static const char *r_debug_native_reg_profile(RDebug *dbg) {
#if __linux__ #if __linux__
// __ /* __
// -=(o '. -=(o '.
// \.-.\ \.-.\
// /| \\ /| \\
// '| || '| ||
// _\_):,_ _\_):,_
// */
#if __arm__ #if __arm__
#include "reg-linux-arm.h" #include "reg-linux-arm.h"
#elif __MIPS__ || __mips__ #elif __MIPS__ || __mips__
@ -30,12 +30,12 @@ static const char *r_debug_native_reg_profile(RDebug *dbg) {
#elif __APPLE__ #elif __APPLE__
// _ /* _
// _\)/_ _\)/_
// / \ / \
// \ / \ /
// \_._/ \_._/
// */
#if __i386__ || __x86_64__ #if __i386__ || __x86_64__
if (dbg->bits & R_SYS_BITS_32) { if (dbg->bits & R_SYS_BITS_32) {
#include "reg-darwin-x86.h" #include "reg-darwin-x86.h"
@ -59,26 +59,26 @@ static const char *r_debug_native_reg_profile(RDebug *dbg) {
#endif #endif
#elif __WINDOWS__ #elif __WINDOWS__
// _______ /*_______
// | | | | | |
// |___|___| |___|___|
// | | | | | |
// |___|___| |___|___|
// */
if (dbg->bits & R_SYS_BITS_64) { if (dbg->bits & R_SYS_BITS_64) {
#include "reg-w64.h" #include "reg-w64.h"
} else { } else {
#include "reg-w32.h" #include "reg-w32.h"
} }
#elif (__OpenBSD__ || __NetBSD__) #elif (__OpenBSD__ || __NetBSD__)
// __.--..__ /* __.--..__
// \-/-/-/ _ __ _.--' _.--' \-/-/-/ _ __ _.--' _.--'
// _ \' \ \\ '' `------.__ _ \' \ \\ '' `------.__
// \\/ __)_) \\ ____..---' \\/ __)_) \\ ____..---'
// //\ o o \\----' //\ o o \\----'
// / <_/ 3 \\ / <_/ 3 \\
// \_,_,__,_/ \\ \_,_,__,_/ \\
*/
#if __i386__ #if __i386__
#include "reg-netbsd-x86.h" #include "reg-netbsd-x86.h"
#elif __x86_64__ #elif __x86_64__
@ -88,16 +88,17 @@ static const char *r_debug_native_reg_profile(RDebug *dbg) {
#endif #endif
#elif __KFBSD__ || __FreeBSD__ #elif __KFBSD__ || __FreeBSD__
// /*
// /( ). /( ).
// \ \__ /| \ \__ /|
// / _ '-/ | / _ '-/ |
// (/\/ | \ (/\/ | \
// / / | \ ) / / | \ )
// O O _/ | O O _/ |
// (__) __ / (__) __ /
// \___/ / \___/ /
// `----' `----'
*/
#if __i386__ #if __i386__
#include "reg-kfbsd-x86.h" #include "reg-kfbsd-x86.h"
#elif __x86_64__ #elif __x86_64__