1
0
mirror of https://github.com/RPCS3/llvm.git synced 2024-12-14 23:48:56 +00:00

Make code fit in 80 cols

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19016 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-12-17 17:02:54 +00:00
parent 9141f03322
commit fb752ba02a

View File

@ -212,7 +212,8 @@ public:
/// This property corresponds to the GCC 'pure' attribute. /// This property corresponds to the GCC 'pure' attribute.
/// ///
bool onlyReadsMemory(Function *F) { bool onlyReadsMemory(Function *F) {
/// FIXME: If the analysis returns more precise info, we can reduce it to this. /// FIXME: If the analysis returns more precise info, we can reduce it to
/// this.
return getModRefBehavior(F, CallSite()) == OnlyReadsMemory; return getModRefBehavior(F, CallSite()) == OnlyReadsMemory;
} }