[llvm-commits] [llvm] r43374 - /llvm/trunk/lib/Analysis/IPA/Andersens.cpp
Hartmut Kaiser
hartmut.kaiser at gmail.com
Thu Oct 25 16:49:14 PDT 2007
Author: hkaiser
Date: Thu Oct 25 18:49:14 2007
New Revision: 43374
URL: http://llvm.org/viewvc/llvm-project?rev=43374&view=rev
Log:
Silenced a VC++ warning.
Modified:
llvm/trunk/lib/Analysis/IPA/Andersens.cpp
Modified: llvm/trunk/lib/Analysis/IPA/Andersens.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/IPA/Andersens.cpp?rev=43374&r1=43373&r2=43374&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/IPA/Andersens.cpp (original)
+++ llvm/trunk/lib/Analysis/IPA/Andersens.cpp Thu Oct 25 18:49:14 2007
@@ -112,7 +112,7 @@
class VISIBILITY_HIDDEN Andersens : public ModulePass, public AliasAnalysis,
private InstVisitor<Andersens> {
- class Node;
+ struct Node;
/// Constraint - Objects of this structure are used to represent the various
/// constraints identified by the algorithm. The constraints are 'copy',
More information about the llvm-commits
mailing list