diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/input.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0a2af74..c2f0f7e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2016-06-13 Bernd Edlinger <bernd.edlinger@hotmail.de> + + * input.c (test_builtins): Fix an assertion. + 2016-06-13 Uros Bizjak <ubizjak@gmail.com> * config/i386/i386.md (paritydi2): Use ix86_expand_setcc. diff --git a/gcc/input.c b/gcc/input.c index 0b340a8..e872cf0 100644 --- a/gcc/input.c +++ b/gcc/input.c @@ -1210,7 +1210,7 @@ test_unknown_location () static void test_builtins () { - assert_loceq ("<built-in>", 0, 0, BUILTINS_LOCATION); + assert_loceq (_("<built-in>"), 0, 0, BUILTINS_LOCATION); ASSERT_PRED1 (is_location_from_builtin_token, BUILTINS_LOCATION); } |