diff options
author | Bernd Edlinger <bernd.edlinger@hotmail.de> | 2016-06-13 15:45:54 +0000 |
---|---|---|
committer | Bernd Edlinger <edlinger@gcc.gnu.org> | 2016-06-13 15:45:54 +0000 |
commit | 10d2fc232412cda3b71b48b705440b828d6c80f5 (patch) | |
tree | 8fcdf4737432a8eb83051914c9cb0edf4cb29965 /gcc | |
parent | ac43f1a8c4fa4bd2a3087bdea58ebfe24fa4edcb (diff) | |
download | gcc-10d2fc232412cda3b71b48b705440b828d6c80f5.zip gcc-10d2fc232412cda3b71b48b705440b828d6c80f5.tar.gz gcc-10d2fc232412cda3b71b48b705440b828d6c80f5.tar.bz2 |
input.c (test_builtins): Fix an assertion.
2016-06-13 Bernd Edlinger <bernd.edlinger@hotmail.de>
* input.c (test_builtins): Fix an assertion.
From-SVN: r237383
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); } |