Fix 80-column violations.
[oota-llvm.git] / lib / Analysis / AliasAnalysis.cpp
index 67b2faac55dc49121c19fc63917a817fc1036fe3..c5523ec4634d8e4a83aa33d4afcbb1cf91acf18a 100644 (file)
@@ -124,8 +124,13 @@ AliasAnalysis::getModRefBehavior(Function *F,
     if (F->doesNotAccessMemory())
       // Can't do better than this.
       return DoesNotAccessMemory;
-    else if (F->onlyReadsMemory())
+    if (F->onlyReadsMemory())
       return OnlyReadsMemory;
+    if (unsigned id = F->getIntrinsicID()) {
+#define GET_INTRINSIC_MODREF_BEHAVIOR
+#include "llvm/Intrinsics.gen"
+#undef GET_INTRINSIC_MODREF_BEHAVIOR
+    }
   }
   return UnknownModRefBehavior;
 }