Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(845)

Unified Diff: lib/Analysis/BasicAliasAnalysis.cpp

Issue 7792066: [llvm] Conditionally include target intrinsics, based on --enable-target Base URL: https://llvm.org/svn/llvm-project/llvm/trunk/
Patch Set: cleanups Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « include/llvm/Intrinsics.td ('k') | lib/Analysis/ConstantFolding.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/Analysis/BasicAliasAnalysis.cpp
===================================================================
--- lib/Analysis/BasicAliasAnalysis.cpp (revision 138929)
+++ lib/Analysis/BasicAliasAnalysis.cpp (working copy)
@@ -797,6 +797,7 @@
return NoModRef;
break;
}
+#if defined(TARGET_ENABLED_ARM)
case Intrinsic::arm_neon_vld1: {
// LLVM's vld1 and vst1 intrinsics currently only support a single
// vector register.
@@ -817,6 +818,7 @@
return NoModRef;
break;
}
+#endif // TARGET_ENABLED_ARM
}
// The AliasAnalysis base class has some smarts, lets use them.
« no previous file with comments | « include/llvm/Intrinsics.td ('k') | lib/Analysis/ConstantFolding.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698