[llvm-commits] [llvm] r42076 - in /llvm/trunk: Xcode/ Xcode/LLVM.xcodeproj/ examples/BrainF/ include/llvm/Module.h lib/Target/Mips/ test/Transforms/GVN/
Gordon Henriksen
gordonhenriksen at mac.com
Mon Sep 17 19:09:34 PDT 2007
Author: gordon
Date: Mon Sep 17 21:09:34 2007
New Revision: 42076
URL: http://llvm.org/viewvc/llvm-project?rev=42076&view=rev
Log:
Fixing an comment in Module.h that refers to a nonexistent parameter.
Also adding some missing svn:ignores that've been bothering me.
Modified:
llvm/trunk/Xcode/ (props changed)
llvm/trunk/Xcode/LLVM.xcodeproj/ (props changed)
llvm/trunk/examples/BrainF/ (props changed)
llvm/trunk/include/llvm/Module.h
llvm/trunk/lib/Target/Mips/ (props changed)
llvm/trunk/test/Transforms/GVN/ (props changed)
Propchange: llvm/trunk/Xcode/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Sep 17 21:09:34 2007
@@ -0,0 +1 @@
+build
Propchange: llvm/trunk/Xcode/LLVM.xcodeproj/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Sep 17 21:09:34 2007
@@ -0,0 +1,2 @@
+*.perspective
+*.pbxuser
Propchange: llvm/trunk/examples/BrainF/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Sep 17 21:09:34 2007
@@ -0,0 +1,2 @@
+Release
+Debug
Modified: llvm/trunk/include/llvm/Module.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Module.h?rev=42076&r1=42075&r2=42076&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Module.h (original)
+++ llvm/trunk/include/llvm/Module.h Mon Sep 17 21:09:34 2007
@@ -215,11 +215,9 @@
/// @{
public:
/// getGlobalVariable - Look up the specified global variable in the module
- /// symbol table. If it does not exist, return null. The type argument
- /// should be the underlying type of the global, i.e., it should not have
- /// the top-level PointerType, which represents the address of the global.
- /// If AllowInternal is set to true, this function will return types that
- /// have InternalLinkage. By default, these types are not returned.
+ /// symbol table. If it does not exist, return null. If AllowInternal is set
+ /// to true, this function will return types that have InternalLinkage. By
+ /// default, these types are not returned.
GlobalVariable *getGlobalVariable(const std::string &Name,
bool AllowInternal = false) const;
Propchange: llvm/trunk/lib/Target/Mips/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Sep 17 21:09:34 2007
@@ -0,0 +1,3 @@
+*.inc
+Debug
+Release
Propchange: llvm/trunk/test/Transforms/GVN/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Sep 17 21:09:34 2007
@@ -0,0 +1 @@
+Output
More information about the llvm-commits
mailing list