summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/SemaChecking.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-10-01 23:40:43 +0000
committerChris Lattner <sabre@nondot.org>2010-10-01 23:40:43 +0000
commit407e7e3acef16273677e2a68025086113fe26178 (patch)
treeb9fbba28d6b1787ca030c0a7095d48eacbe40005 /clang/lib/Sema/SemaChecking.cpp
parent04b03b1fc433a19f7dc796fbc0ad5fca51fe1c92 (diff)
downloadbcm5719-llvm-407e7e3acef16273677e2a68025086113fe26178.tar.gz
bcm5719-llvm-407e7e3acef16273677e2a68025086113fe26178.zip
kill off CheckX86BuiltinFunctionCall
llvm-svn: 115382
Diffstat (limited to 'clang/lib/Sema/SemaChecking.cpp')
-rw-r--r--clang/lib/Sema/SemaChecking.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/clang/lib/Sema/SemaChecking.cpp b/clang/lib/Sema/SemaChecking.cpp
index 6f04f69d7d6..e2cc2f32637 100644
--- a/clang/lib/Sema/SemaChecking.cpp
+++ b/clang/lib/Sema/SemaChecking.cpp
@@ -224,11 +224,6 @@ Sema::CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
if (CheckARMBuiltinFunctionCall(BuiltinID, TheCall))
return ExprError();
break;
- case llvm::Triple::x86:
- case llvm::Triple::x86_64:
- if (CheckX86BuiltinFunctionCall(BuiltinID, TheCall))
- return ExprError();
- break;
default:
break;
}
@@ -237,10 +232,6 @@ Sema::CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
return move(TheCallResult);
}
-bool Sema::CheckX86BuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
- return false;
-}
-
// Get the valid immediate range for the specified NEON type code.
static unsigned RFT(unsigned t, bool shift = false) {
bool quad = t & 0x10;
OpenPOWER on IntegriCloud