We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2553a2 commit 0413328Copy full SHA for 0413328
clang/lib/Sema/SemaPPC.cpp
@@ -93,7 +93,6 @@ bool SemaPPC::CheckPPCBuiltinFunctionCall(const TargetInfo &TI,
93
unsigned BuiltinID,
94
CallExpr *TheCall) {
95
ASTContext &Context = getASTContext();
96
- unsigned i = 0, l = 0, u = 0;
97
bool IsTarget64Bit = TI.getTypeWidth(TI.getIntPtrType()) == 64;
98
llvm::APSInt Result;
99
@@ -248,7 +247,7 @@ bool SemaPPC::CheckPPCBuiltinFunctionCall(const TargetInfo &TI,
248
247
return BuiltinPPCMMACall(TheCall, BuiltinID, Types);
249
#include "clang/Basic/BuiltinsPPC.def"
250
}
251
- return SemaRef.BuiltinConstantArgRange(TheCall, i, l, u);
+ llvm_unreachable("must return from switch");
252
253
254
// Check if the given type is a non-pointer PPC MMA type. This function is used
0 commit comments