Fix compiler warnings

This commit is contained in:
Matt Pharr
2013-08-07 12:53:39 -07:00
parent 5e5d42b918
commit 1d76f74b16
2 changed files with 5 additions and 5 deletions

View File

@@ -2169,7 +2169,7 @@ lAddFunctionParams(Declarator *decl) {
/** Add a symbol for the built-in mask variable to the symbol table */
static void lAddMaskToSymbolTable(SourcePos pos) {
const Type *t;
const Type *t = NULL;
switch (g->target->getMaskBitCount()) {
case 1:
t = AtomicType::VaryingBool;