diff options
author | Chris Lattner <sabre@nondot.org> | 2006-02-22 16:23:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-02-22 16:23:43 +0000 |
commit | 410354fe0c052141dadeca939395743f8dd58e38 (patch) | |
tree | 93f7cc80943a94623335b126b87998cebbe0e00b /include/llvm/Analysis/DataStructure/DSGraph.h | |
parent | a2a51607a6601d42c5f559858f77ef1cad86efe1 (diff) |
Make the LLVM headers "-ansi -pedantic -Wno-long-long" clean.
Patch by Martin Partel!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26313 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/DataStructure/DSGraph.h')
-rw-r--r-- | include/llvm/Analysis/DataStructure/DSGraph.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Analysis/DataStructure/DSGraph.h b/include/llvm/Analysis/DataStructure/DSGraph.h index f38b59eb06..eb4388b6ad 100644 --- a/include/llvm/Analysis/DataStructure/DSGraph.h +++ b/include/llvm/Analysis/DataStructure/DSGraph.h @@ -411,7 +411,7 @@ public: // enum MarkIncompleteFlags { MarkFormalArgs = 1, IgnoreFormalArgs = 0, - IgnoreGlobals = 2, MarkGlobalsIncomplete = 0, + IgnoreGlobals = 2, MarkGlobalsIncomplete = 0 }; void markIncompleteNodes(unsigned Flags); @@ -421,7 +421,7 @@ public: // graph entirely. This is only appropriate to use when inlining graphs. // enum RemoveDeadNodesFlags { - RemoveUnreachableGlobals = 1, KeepUnreachableGlobals = 0, + RemoveUnreachableGlobals = 1, KeepUnreachableGlobals = 0 }; void removeDeadNodes(unsigned Flags); @@ -432,7 +432,7 @@ public: DontCloneCallNodes = 1 << 1, CloneCallNodes = 0, DontCloneAuxCallNodes = 1 << 2, CloneAuxCallNodes = 0, StripModRefBits = 1 << 3, KeepModRefBits = 0, - StripIncompleteBit = 1 << 4, KeepIncompleteBit = 0, + StripIncompleteBit = 1 << 4, KeepIncompleteBit = 0 }; void updateFromGlobalGraph(); |