From: Dan Gohman Date: Thu, 16 Dec 2010 02:55:10 +0000 (+0000) Subject: Update a comment. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=326faecc3506fae441795b1f0c75e8b96bf11ce1;p=oota-llvm.git Update a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121946 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/TypeBasedAliasAnalysis.cpp b/lib/Analysis/TypeBasedAliasAnalysis.cpp index 57a7c8f9485..40e18ab2fbf 100644 --- a/lib/Analysis/TypeBasedAliasAnalysis.cpp +++ b/lib/Analysis/TypeBasedAliasAnalysis.cpp @@ -66,7 +66,9 @@ #include "llvm/Support/CommandLine.h" using namespace llvm; -// For testing purposes, enable TBAA only via a special option. +// A handy option for disabling TBAA functionality. The same effect can also be +// achieved by stripping the !tbaa tags from IR, but this option is sometimes +// more convenient. static cl::opt EnableTBAA("enable-tbaa", cl::init(true)); namespace {