From f2d817192bb694590f737f2c4585a0088399898d Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 30 Aug 2010 23:47:24 +0000 Subject: Update the descriptions of NoModRef and ModRef to be consistent with the descriptions of Mod and Ref. llvm-svn: 112557 --- llvm/docs/AliasAnalysis.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'llvm/docs') diff --git a/llvm/docs/AliasAnalysis.html b/llvm/docs/AliasAnalysis.html index c6330a94695..a1726aa0c77 100644 --- a/llvm/docs/AliasAnalysis.html +++ b/llvm/docs/AliasAnalysis.html @@ -238,10 +238,10 @@ a location, ModRef is returned.

The AliasAnalysis class also provides a getModRefInfo method for testing dependencies between function calls. This method takes two -call sites (CS1 & CS2), returns NoModRef if the two calls refer to disjoint -memory locations, Ref if CS1 reads memory written by CS2, Mod if CS1 writes to -memory read or written by CS2, or ModRef if CS1 might read or write memory -accessed by CS2. Note that this relation is not commutative.

+call sites (CS1 & CS2), returns NoModRef if neither call writes to memory +read or written by the other, Ref if CS1 reads memory written by CS2, Mod if CS1 +writes to memory read or written by CS2, or ModRef if CS1 might read or write +memory written to by CS2. Note that this relation is not commutative.

-- cgit v1.2.3