diff --git a/fixincludes/ChangeLog b/fixincludes/ChangeLog
index 88aa563..d3b25bc 100644
--- a/fixincludes/ChangeLog
+++ b/fixincludes/ChangeLog
@@ -1,3 +1,9 @@
+2013-03-25  Alexander Ivchenko <alexander.ivchenko@intel.com>
+
+	* inclhack.def (complier_h_tradcpp): New.
+	* fixincl.x: Rebuilt.
+	* tests/base/linux/compiler.h: New.
+
 2013-01-16  Alexandre Oliva <aoliva@redhat.com>
 
 	* inclhack.def (feraiseexcept_nosse_invalid): New.
diff --git a/fixincludes/fixincl.x b/fixincludes/fixincl.x
index 29fc52a..fca615a 100644
--- a/fixincludes/fixincl.x
+++ b/fixincludes/fixincl.x
@@ -2,11 +2,11 @@
  * 
  * DO NOT EDIT THIS FILE   (fixincl.x)
  * 
- * It has been AutoGen-ed  Saturday December 29, 2012 at 09:17:09 AM BRST
+ * It has been AutoGen-ed  March 25, 2013 at 07:21:23 PM by AutoGen 5.12
  * From the definitions    inclhack.def
  * and the template file   fixincl
  */
-/* DO NOT SVN-MERGE THIS FILE, EITHER Sat Dec 29 09:17:10 BRST 2012
+/* DO NOT SVN-MERGE THIS FILE, EITHER Mon Mar 25 19:21:23 MSK 2013
  *
  * You must regenerate it.  Use the ./genfixes script.
  *
@@ -15,7 +15,7 @@
  * certain ANSI-incompatible system header files which are fixed to work
  * correctly with ANSI C and placed in a directory that GNU C will search.
  *
- * This file contains 226 fixup descriptions.
+ * This file contains 227 fixup descriptions.
  *
  * See README for more information.
  *
@@ -9260,14 +9260,49 @@ static const char* apzFeraiseexcept_Nosse_DivbyzeroPatch[] = {
 # endif",
     (char*)NULL };
 
+/* * * * * * * * * * * * * * * * * * * * * * * * * *
+ *
+ *  Description of Complier_H_Tradcpp fix
+ */
+tSCC zComplier_H_TradcppName[] =
+     "complier_h_tradcpp";
+
+/*
+ *  File name selection pattern
+ */
+tSCC zComplier_H_TradcppList[] =
+  "linux/compiler.h\0";
+/*
+ *  Machine/OS name selection pattern
+ */
+#define apzComplier_H_TradcppMachs (const char**)NULL
+
+/*
+ *  content selection pattern - do fix if pattern found
+ */
+tSCC zComplier_H_TradcppSelect0[] =
+       "#define __builtin_warning\\(x, y\\.\\.\\.\\) \\(1\\)";
+
+#define    COMPLIER_H_TRADCPP_TEST_CT  1
+static tTestDesc aComplier_H_TradcppTests[] = {
+  { TT_EGREP,    zComplier_H_TradcppSelect0, (regex_t*)NULL }, };
+
+/*
+ *  Fix Command Arguments for Complier_H_Tradcpp
+ */
+static const char* apzComplier_H_TradcppPatch[] = {
+    "format",
+    "/* __builtin_warning(x, y...) is obsolete */",
+    (char*)NULL };
+
 
 /* * * * * * * * * * * * * * * * * * * * * * * * * *
  *
  *  List of all fixes
  */
-#define REGEX_COUNT          264
+#define REGEX_COUNT          265
 #define MACH_LIST_SIZE_LIMIT 187
-#define FIX_COUNT            226
+#define FIX_COUNT            227
 
 /*
  *  Enumerate the fixes
@@ -9498,7 +9533,8 @@ typedef enum {
     X11_NEW_FIXIDX,
     X11_SPRINTF_FIXIDX,
     FERAISEEXCEPT_NOSSE_INVALID_FIXIDX,
-    FERAISEEXCEPT_NOSSE_DIVBYZERO_FIXIDX
+    FERAISEEXCEPT_NOSSE_DIVBYZERO_FIXIDX,
+    COMPLIER_H_TRADCPP_FIXIDX
 } t_fixinc_idx;
 
 tFixDesc fixDescList[ FIX_COUNT ] = {
@@ -10630,5 +10666,10 @@ tFixDesc fixDescList[ FIX_COUNT ] = {
   {  zFeraiseexcept_Nosse_DivbyzeroName,    zFeraiseexcept_Nosse_DivbyzeroList,
      apzFeraiseexcept_Nosse_DivbyzeroMachs,
      FERAISEEXCEPT_NOSSE_DIVBYZERO_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
-     aFeraiseexcept_Nosse_DivbyzeroTests,   apzFeraiseexcept_Nosse_DivbyzeroPatch, 0 }
+     aFeraiseexcept_Nosse_DivbyzeroTests,   apzFeraiseexcept_Nosse_DivbyzeroPatch, 0 },
+
+  {  zComplier_H_TradcppName,    zComplier_H_TradcppList,
+     apzComplier_H_TradcppMachs,
+     COMPLIER_H_TRADCPP_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
+     aComplier_H_TradcppTests,   apzComplier_H_TradcppPatch, 0 }
 };
diff --git a/fixincludes/inclhack.def b/fixincludes/inclhack.def
index 2406920..e46d912 100644
--- a/fixincludes/inclhack.def
+++ b/fixincludes/inclhack.def
@@ -4864,4 +4864,18 @@ fix = {
 	_EOText_;
 };
 
+/*
+ *  Old Linux kernel's <compiler.h> header breaks Traditional CPP
+ */
+fix = {
+    hackname  = complier_h_tradcpp;
+    files     = linux/compiler.h;
+
+    select    = "#define __builtin_warning\\(x, y\\.\\.\\.\\) \\(1\\)";
+    c_fix     = format;
+    c_fix_arg = "/* __builtin_warning(x, y...) is obsolete */";
+
+    test_text = "#define __builtin_warning(x, y...) (1)";
+};
+
 /*EOF*/
diff --git a/fixincludes/tests/base/linux/compiler.h b/fixincludes/tests/base/linux/compiler.h
new file mode 100644
index 0000000..7135276
--- /dev/null
+++ b/fixincludes/tests/base/linux/compiler.h
@@ -0,0 +1,14 @@
+/*  DO NOT EDIT THIS FILE.
+
+    It has been auto-edited by fixincludes from:
+
+	"fixinc/tests/inc/linux/compiler.h"
+
+    This had to be done to correct non-standard usages in the
+    original, manufacturer supplied header file.  */
+
+
+
+#if defined( COMPLIER_H_TRADCPP_CHECK )
+/* __builtin_warning(x, y...) is obsolete */
+#endif  /* COMPLIER_H_TRADCPP_CHECK */
