diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-11-12 17:13:45 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-11-12 17:13:45 +0000 |
commit | 2aebdda81e76cc5d2f5d66455bf61586a6880a1e (patch) | |
tree | 977cd08e8182c35fcc748421147122a2299fae93 /llvm/include | |
parent | cf4748f18000ac24fb9d07d493be59cf035c8d68 (diff) | |
download | bcm5719-llvm-2aebdda81e76cc5d2f5d66455bf61586a6880a1e.tar.gz bcm5719-llvm-2aebdda81e76cc5d2f5d66455bf61586a6880a1e.zip |
Comment update. NFC.
Fix the library name.
Don't duplicate the comment in the .cpp file.
Don't repeat the name in the comment.
llvm-svn: 252911
Diffstat (limited to 'llvm/include')
-rw-r--r-- | llvm/include/llvm/IR/Constant.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/llvm/include/llvm/IR/Constant.h b/llvm/include/llvm/IR/Constant.h index bb093d7ffac..555efc41c06 100644 --- a/llvm/include/llvm/IR/Constant.h +++ b/llvm/include/llvm/IR/Constant.h @@ -92,10 +92,9 @@ public: GlobalRelocations = 2 }; - /// getRelocationInfo - This method classifies the entry according to - /// whether or not it may generate a relocation entry. This must be - /// conservative, so if it might codegen to a relocatable entry, it should say - /// so. The return values are: + /// This method classifies the entry according to whether or not it may + /// generate a relocation entry. This must be conservative, so if it might + /// codegen to a relocatable entry, it should say so. The return values are: /// /// NoRelocation: This constant pool entry is guaranteed to never have a /// relocation applied to it (because it holds a simple constant like @@ -105,7 +104,7 @@ public: /// linker will never see them. /// GlobalRelocations: This entry may have arbitrary relocations. /// - /// FIXME: This really should not be in VMCore. + /// FIXME: This really should not be in IR. PossibleRelocationsTy getRelocationInfo() const; /// getAggregateElement - For aggregates (struct/array/vector) return the |