diff options
author | Devang Patel <dpatel@apple.com> | 2010-08-23 18:25:56 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-08-23 18:25:56 +0000 |
commit | 0c4720c6bdf517d02aaf71d90c0572a5aa4813bc (patch) | |
tree | 88538fbeca52ccbbfa5946639d22c5b3faafce52 /include/llvm/Analysis/DebugInfo.h | |
parent | 30dc1ee78ae99e4d9e92cdb02f1cbd64827c0630 (diff) | |
download | external_llvm-0c4720c6bdf517d02aaf71d90c0572a5aa4813bc.zip external_llvm-0c4720c6bdf517d02aaf71d90c0572a5aa4813bc.tar.gz external_llvm-0c4720c6bdf517d02aaf71d90c0572a5aa4813bc.tar.bz2 |
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/DebugInfo.h')
-rw-r--r-- | include/llvm/Analysis/DebugInfo.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/llvm/Analysis/DebugInfo.h b/include/llvm/Analysis/DebugInfo.h index 51bede0..2d1418d 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; |