Removing warning due to issue with LLVM headers.

This commit is contained in:
Christoffer Lerno
2021-04-29 18:17:55 +02:00
parent 5ad11ebb76
commit 3a465a99b2
2 changed files with 2 additions and 2 deletions

View File

@@ -150,7 +150,7 @@ target_compile_options(c3c PRIVATE -Wno-unknown-warning-option
-Wold-style-declaration -Woverride-init
-Wtype-limits -Wshift-negative-value
-Wnested-externs -Wvla
-Wpointer-arith -Wpacked -Wredundant-decls
-Wpointer-arith -Wpacked
-Walloc-zero -Wduplicated-cond -Wshadow
-Wmissing-field-initializers -Wmissing-parameter-type
-Wno-unused-result -Wno-maybe-uninitialized

View File

@@ -4,7 +4,7 @@
#include "compiler_internal.h"
static Type t_u0, t_str, t_u1, t_i8, t_i16, t_i32, t_i64, t_i128, t_ixx;
static Type t_u0, t_u1, t_i8, t_i16, t_i32, t_i64, t_i128, t_ixx;
static Type t_u8, t_u16, t_u32, t_u64, t_u128;
static Type t_f16, t_f32, t_f64, t_f128, t_fxx;
static Type t_usz, t_isz, t_uptr, t_iptr, t_uptrdiff, t_iptrdiff;