From: Bernd Edlinger Date: Mon, 13 Jun 2016 15:45:54 +0000 (+0000) Subject: input.c (test_builtins): Fix an assertion. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=10d2fc232412cda3b71b48b705440b828d6c80f5;p=gcc.git input.c (test_builtins): Fix an assertion. 2016-06-13 Bernd Edlinger * input.c (test_builtins): Fix an assertion. From-SVN: r237383 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0a2af74432d..c2f0f7ecf5e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2016-06-13 Bernd Edlinger + + * input.c (test_builtins): Fix an assertion. + 2016-06-13 Uros Bizjak * config/i386/i386.md (paritydi2): Use ix86_expand_setcc. diff --git a/gcc/input.c b/gcc/input.c index 0b340a8ed9d..e872cf039f7 100644 --- a/gcc/input.c +++ b/gcc/input.c @@ -1210,7 +1210,7 @@ test_unknown_location () static void test_builtins () { - assert_loceq ("", 0, 0, BUILTINS_LOCATION); + assert_loceq (_(""), 0, 0, BUILTINS_LOCATION); ASSERT_PRED1 (is_location_from_builtin_token, BUILTINS_LOCATION); }