re PR target/65697 (__atomic memory barriers not strong enough for __sync builtins)
[gcc.git] / gcc / intl.c
index 47e0b3da051e9b6f79a9c2c236e2cd8750b04325..a902446e0554b6efd3d344419b27b0957630d839 100644 (file)
@@ -1,6 +1,5 @@
 /* Message translation utilities.
-   Copyright (C) 2001, 2003, 2004, 2005, 2007, 2008, 2009
-   Free Software Foundation, Inc.
+   Copyright (C) 2001-2015 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
@@ -21,7 +20,6 @@ along with GCC; see the file COPYING3.  If not see
 #include "config.h"
 #include "system.h"
 #include "coretypes.h"
-#include "tm.h"
 #include "intl.h"
 
 #ifdef HAVE_LANGINFO_CODESET
@@ -142,7 +140,7 @@ char *
 get_spaces (const char *str)
 {
    size_t len = gcc_gettext_width (str);
-   char *spaces = XNEWVEC(char, len + 1);
+   char *spaces = XNEWVEC (char, len + 1);
    memset (spaces, ' ', len);
    spaces[len] = '\0';
    return spaces;