diff options
author | 2004-09-10 10:38:51 +0000 | |
---|---|---|
committer | 2004-09-10 10:38:51 +0000 | |
commit | cafc89c57518c0bb66b3766bc81dd1b67277cc75 (patch) | |
tree | a4b16127d4de6e6f336bb88462f6cdf92efee5ff | |
parent | Use correct register aliases wrt the __mips_n64 regdef. (diff) | |
download | wireguard-openbsd-cafc89c57518c0bb66b3766bc81dd1b67277cc75.tar.xz wireguard-openbsd-cafc89c57518c0bb66b3766bc81dd1b67277cc75.zip |
typo in SAVE_CPU expansion.
-rw-r--r-- | sys/arch/mips64/include/cpustate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mips64/include/cpustate.h b/sys/arch/mips64/include/cpustate.h index ea6eba697d1..db1e07f2233 100644 --- a/sys/arch/mips64/include/cpustate.h +++ b/sys/arch/mips64/include/cpustate.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpustate.h,v 1.4 2004/09/09 22:21:41 pefo Exp $ */ +/* $OpenBSD: cpustate.h,v 1.5 2004/09/10 10:38:51 miod Exp $ */ /* * Copyright (c) 2002-2003 Opsycon AB (www.opsycon.se / www.opsycon.com) @@ -60,7 +60,7 @@ SAVE_REG($12, T4, frame, bo) ;\ SAVE_REG($13, T5, frame, bo) ;\ SAVE_REG($14, T6, frame, bo) ;\ - SAVE_REG($15 T7, frame, bo) ;\ + SAVE_REG($15, T7, frame, bo) ;\ SAVE_REG(t8, T8, frame, bo) ;\ SAVE_REG(t9, T9, frame, bo) ;\ SAVE_REG(gp, GP, frame, bo) ;\ |