Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/src/mm/sun4u/tlb.c

    r560b81c r63e27ef  
    4141#include <arch/mm/mmu.h>
    4242#include <arch/interrupt.h>
     43#include <assert.h>
    4344#include <interrupt.h>
    4445#include <arch.h>
     
    201202        bool found = page_mapping_find(AS, istate->tpc, true, &t);
    202203        if (found && PTE_EXECUTABLE(&t)) {
    203                 ASSERT(t.p);
     204                assert(t.p);
    204205
    205206                /*
     
    258259        bool found = page_mapping_find(as, page_16k, true, &t);
    259260        if (found) {
    260                 ASSERT(t.p);
     261                assert(t.p);
    261262
    262263                /*
     
    301302        bool found = page_mapping_find(as, page_16k, true, &t);
    302303        if (found && PTE_WRITABLE(&t)) {
    303                 ASSERT(t.p);
     304                assert(t.p);
    304305
    305306                /*
Note: See TracChangeset for help on using the changeset viewer.