1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

Fix some -Wunused warnings by "using" a macro argument

This commit is contained in:
Peter Wemm 2002-03-12 00:19:14 +00:00
parent a84c6cd303
commit 841390683c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=92124

View File

@ -64,13 +64,13 @@ extern db_regs_t ddb_regs; /* register state */
#define IS_BREAKPOINT_TRAP(type, code) (type == IA64_VEC_BREAK)
#define IS_WATCHPOINT_TRAP(type, code) 0
#define inst_trap_return(ins) 0
#define inst_return(ins) 0
#define inst_call(ins) 0
#define inst_branch(ins) 0
#define inst_load(ins) 0
#define inst_store(ins) 0
#define inst_unconditional_flow_transfer(ins) 0
#define inst_trap_return(ins) (ins & 0)
#define inst_return(ins) (ins & 0)
#define inst_call(ins) (ins & 0)
#define inst_branch(ins) (ins & 0)
#define inst_load(ins) (ins & 0)
#define inst_store(ins) (ins & 0)
#define inst_unconditional_flow_transfer(ins) (ins & 0)
#define branch_taken(ins, pc, regs) pc