Skip to content

Commit

Permalink
Fix "control may reach end of non-void function" warning.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@146448 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
nlewycky committed Dec 12, 2011
1 parent 9d24a8b commit db103cc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/Driver/Tools.cpp
Expand Up @@ -990,8 +990,7 @@ static const char *getHexagonTargetCPU(const ArgList &Args)
assert(0 && "Unknown -m argument.");
}
}
else
return "hexagonv2";
return "hexagonv2";
}

void Clang::AddHexagonTargetArgs(const ArgList &Args,
Expand Down

0 comments on commit db103cc

Please sign in to comment.