summaryrefslogtreecommitdiff
path: root/include/llvm/Analysis
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2010-08-23 18:25:56 +0000
committerDevang Patel <dpatel@apple.com>2010-08-23 18:25:56 +0000
commit0c4720c6bdf517d02aaf71d90c0572a5aa4813bc (patch)
tree88538fbeca52ccbbfa5946639d22c5b3faafce52 /include/llvm/Analysis
parent30dc1ee78ae99e4d9e92cdb02f1cbd64827c0630 (diff)
downloadllvm-0c4720c6bdf517d02aaf71d90c0572a5aa4813bc.tar.gz
llvm-0c4720c6bdf517d02aaf71d90c0572a5aa4813bc.tar.bz2
llvm-0c4720c6bdf517d02aaf71d90c0572a5aa4813bc.tar.xz
Handle qualified constants that are directly folded by FE.
PR 7920. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111820 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis')
-rw-r--r--include/llvm/Analysis/DebugInfo.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/llvm/Analysis/DebugInfo.h b/include/llvm/Analysis/DebugInfo.h
index 51bede091c..2d1418da64 100644
--- a/include/llvm/Analysis/DebugInfo.h
+++ b/include/llvm/Analysis/DebugInfo.h
@@ -290,6 +290,9 @@ namespace llvm {
unsigned getEncoding() const { return getUnsignedField(9); }
+ /// Verify - Verify that a basic type descriptor is well formed.
+ bool Verify() const;
+
/// print - print basic type.
void print(raw_ostream &OS) const;
@@ -313,6 +316,9 @@ namespace llvm {
/// return base type size.
uint64_t getOriginalTypeSize() const;
+ /// Verify - Verify that a derived type descriptor is well formed.
+ bool Verify() const;
+
/// print - print derived type.
void print(raw_ostream &OS) const;