@@ -428,14 +428,14 @@ MSAN_MAYBE_STORE_ORIGIN(u64, 8)
428
428
// - add instname as a parameter everywhere (with a check whether instname is
429
429
// null): this pollutes the fastpath
430
430
// - duplicate the function body: redundancy is redundant
431
- #define __MSAN_WARNING_BODY \
432
- GET_CALLER_PC_BP; \
433
- PrintWarningWithOrigin (pc, bp, 0 ); \
431
+ #define __MSAN_WARNING_BODY \
432
+ GET_CALLER_PC_BP; \
433
+ PrintWarningWithOrigin (pc, bp, 0 ); \
434
434
if (__msan::flags()->halt_on_error) { \
435
- if (__msan::flags ()->print_stats ) \
436
- ReportStats (); \
437
- Printf (" Exiting\n " ); \
438
- Die (); \
435
+ if (__msan::flags ()->print_stats ) \
436
+ ReportStats (); \
437
+ Printf (" Exiting\n " ); \
438
+ Die (); \
439
439
}
440
440
441
441
void __msan_warning () {
@@ -449,11 +449,11 @@ void __msan_warning_instname(char *instname) {
449
449
}
450
450
451
451
#define __MSAN_WARNING_NORETURN_BODY \
452
- GET_CALLER_PC_BP; \
452
+ GET_CALLER_PC_BP; \
453
453
PrintWarningWithOrigin (pc, bp, 0 ); \
454
- if (__msan::flags()->print_stats) \
455
- ReportStats (); \
456
- Printf (" Exiting\n " ); \
454
+ if (__msan::flags()->print_stats) \
455
+ ReportStats (); \
456
+ Printf (" Exiting\n " ); \
457
457
Die ();
458
458
459
459
void __msan_warning_noreturn () {
@@ -467,13 +467,13 @@ void __msan_warning_noreturn_instname(char *instname) {
467
467
}
468
468
469
469
#define __MSAN_WARNING_WITH_ORIGIN_BODY (origin ) \
470
- GET_CALLER_PC_BP; \
471
- PrintWarningWithOrigin (pc, bp, origin); \
472
- if (__msan::flags()->halt_on_error) { \
473
- if (__msan::flags ()->print_stats ) \
474
- ReportStats (); \
475
- Printf (" Exiting\n " ); \
476
- Die (); \
470
+ GET_CALLER_PC_BP; \
471
+ PrintWarningWithOrigin (pc, bp, origin); \
472
+ if (__msan::flags()->halt_on_error) { \
473
+ if (__msan::flags ()->print_stats ) \
474
+ ReportStats (); \
475
+ Printf (" Exiting\n " ); \
476
+ Die (); \
477
477
}
478
478
479
479
void __msan_warning_with_origin (u32 origin) {
@@ -487,11 +487,11 @@ void __msan_warning_with_origin_instname(u32 origin, char *instname) {
487
487
}
488
488
489
489
#define __MSAN_WARNING_WITH_ORIGIN_NORETURN_BODY (origin ) \
490
- GET_CALLER_PC_BP; \
491
- PrintWarningWithOrigin (pc, bp, origin); \
492
- if (__msan::flags()->print_stats) \
493
- ReportStats (); \
494
- Printf (" Exiting\n " ); \
490
+ GET_CALLER_PC_BP; \
491
+ PrintWarningWithOrigin (pc, bp, origin); \
492
+ if (__msan::flags()->print_stats) \
493
+ ReportStats (); \
494
+ Printf (" Exiting\n " ); \
495
495
Die ();
496
496
497
497
void __msan_warning_with_origin_noreturn (u32 origin) {
0 commit comments