From 9a8a5ae69d3a436e51a7eb2edafe254572f60823 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Sun, 30 Dec 2012 08:20:13 +0100 Subject: tcg: Remove unneeded assertion Commit 7f6f0ae5b95adfa76e10eabe2c34424a955fd10c added two assertions. One of these assertions is not needed: The pointer ts is never NULL because it is initialized with the address of an array element. Reviewed-by: Richard Henderson Signed-off-by: Stefan Weil Signed-off-by: Anthony Liguori --- tcg/tcg.c | 1 - 1 file changed, 1 deletion(-) (limited to 'tcg/tcg.c') diff --git a/tcg/tcg.c b/tcg/tcg.c index ede51a3960..9275e372ff 100644 --- a/tcg/tcg.c +++ b/tcg/tcg.c @@ -800,7 +800,6 @@ static char *tcg_get_arg_str_idx(TCGContext *s, char *buf, int buf_size, assert(idx >= 0 && idx < s->nb_temps); ts = &s->temps[idx]; - assert(ts); if (idx < s->nb_globals) { pstrcpy(buf, buf_size, ts->name); } else { -- cgit v1.2.1