aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/NaCl
diff options
context:
space:
mode:
authorJF Bastien <jfb@chromium.org>2013-07-20 19:35:41 -0700
committerJF Bastien <jfb@chromium.org>2013-07-20 19:35:41 -0700
commit1856bd7d7cb47f7ae32b7c848a8df5c28281e424 (patch)
tree5183147b68bd8c70e2975f794f1cf8e9d6a1dc74 /lib/Analysis/NaCl
parent58dfde724a201838b40f1314590ec4a1a7f2a601 (diff)
Remove prefetch
Following our discussion in the related bug, prefetch will not be part of our initial stable ABI. BUG= https://code.google.com/p/nativeclient/issues/detail?id=3531 TEST= cd ./pnacl/build/llvm_x86_64; ninja check R=jvoung@chromium.org Review URL: https://codereview.chromium.org/19771015
Diffstat (limited to 'lib/Analysis/NaCl')
-rw-r--r--lib/Analysis/NaCl/PNaClABIVerifyModule.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Analysis/NaCl/PNaClABIVerifyModule.cpp b/lib/Analysis/NaCl/PNaClABIVerifyModule.cpp
index a418246bae..2793d2ec96 100644
--- a/lib/Analysis/NaCl/PNaClABIVerifyModule.cpp
+++ b/lib/Analysis/NaCl/PNaClABIVerifyModule.cpp
@@ -316,7 +316,6 @@ bool AllowedIntrinsics::isAllowed(const Function *Func) {
case Intrinsic::dbg_value:
return PNaClABIAllowDevIntrinsics || PNaClABIAllowDebugMetadata;
case Intrinsic::nacl_target_arch: // Used by translator self-build.
- case Intrinsic::prefetch: // TODO(jfb): Use our own data-prefetch intrinsic instead.
return PNaClABIAllowDevIntrinsics;
}
}