[cfe-commits] r45297 - /cfe/trunk/include/clang/Analysis/PathSensitive/SimulVertex.h

Ted Kremenek kremenek at apple.com
Fri Dec 21 14:57:10 PST 2007


Author: kremenek
Date: Fri Dec 21 16:57:10 2007
New Revision: 45297

URL: http://llvm.org/viewvc/llvm-project?rev=45297&view=rev
Log:
Changed "Location" from "ProgramEdge" to "ProgramEdge&" (slightly more svelt
memory representation).

Modified:
    cfe/trunk/include/clang/Analysis/PathSensitive/SimulVertex.h

Modified: cfe/trunk/include/clang/Analysis/PathSensitive/SimulVertex.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/PathSensitive/SimulVertex.h?rev=45297&r1=45296&r2=45297&view=diff

==============================================================================
--- cfe/trunk/include/clang/Analysis/PathSensitive/SimulVertex.h (original)
+++ cfe/trunk/include/clang/Analysis/PathSensitive/SimulVertex.h Fri Dec 21 16:57:10 2007
@@ -32,7 +32,7 @@
   
   /// Location - The program edge representing the location in the function body
   ///  that this vertex corresponds to.
-  ProgramEdge Location;
+  const ProgramEdge& Location;
   
   /// State - The state associated with this vertex. Normally this value
   ///  is immutable, but we anticipate there will be times when algorithms





More information about the cfe-commits mailing list