diff options
author | JF Bastien <jfb@chromium.org> | 2013-07-20 19:35:41 -0700 |
---|---|---|
committer | JF Bastien <jfb@chromium.org> | 2013-07-20 19:35:41 -0700 |
commit | 1856bd7d7cb47f7ae32b7c848a8df5c28281e424 (patch) | |
tree | 5183147b68bd8c70e2975f794f1cf8e9d6a1dc74 /lib/Analysis/NaCl | |
parent | 58dfde724a201838b40f1314590ec4a1a7f2a601 (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.cpp | 1 |
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; } } |