diff options
author | Hartmut Kaiser <hartmut.kaiser@gmail.com> | 2007-10-25 23:49:14 +0000 |
---|---|---|
committer | Hartmut Kaiser <hartmut.kaiser@gmail.com> | 2007-10-25 23:49:14 +0000 |
commit | 081fdf238ba17747487d35da1283b8323482b4d2 (patch) | |
tree | d674d8aa0d6fe8c8b656e30762ea165662025815 | |
parent | 3bd9dcc08f1fc3431b6efdafcc005815141462b7 (diff) |
Silenced a VC++ warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43374 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Analysis/IPA/Andersens.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/IPA/Andersens.cpp b/lib/Analysis/IPA/Andersens.cpp index e20be6bcc2..08b9dc3de2 100644 --- a/lib/Analysis/IPA/Andersens.cpp +++ b/lib/Analysis/IPA/Andersens.cpp @@ -112,7 +112,7 @@ namespace { 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', |