Changeset 63e27ef in mainline for kernel/arch/mips32/src/exception.c


Ignore:
Timestamp:
2017-06-19T21:47:42Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
deacc58d
Parents:
7354b5e
Message:

ASSERT → assert

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/mips32/src/exception.c

    r7354b5e r63e27ef  
    3939#include <arch/cp0.h>
    4040#include <arch.h>
    41 #include <debug.h>
     41#include <assert.h>
    4242#include <proc/thread.h>
    4343#include <print.h>
     
    120120{
    121121        if (*((uint32_t *) istate->epc) == 0x7c03e83b) {
    122                 ASSERT(THREAD);
     122                assert(THREAD);
    123123                istate->epc += 4;
    124124                istate->v1 = istate->kt1;
Note: See TracChangeset for help on using the changeset viewer.