1 /* BraIA64.c -- Converter for IA-64 code 2 2023-02-20 : Igor Pavlov : Public domain */ 3 4 #include "Precomp.h" 5 6 // the code was moved to Bra.c 7 8 #ifdef _MSC_VER 9 #pragma warning(disable : 4206) // nonstandard extension used : translation unit is empty 10 #endif 11 12 #if defined(__clang__) 13 #pragma GCC diagnostic ignored "-Wempty-translation-unit" 14 #endif 15