diff options
author | Devang Patel <dpatel@apple.com> | 2011-09-14 23:13:28 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2011-09-14 23:13:28 +0000 |
commit | 734a67cda5a02be1654a2f89b811d7b6cbe3f5e5 (patch) | |
tree | 83b5bea9bdbcc35df956099082956a8fb33c3163 /include | |
parent | e1d58a6556fe8b00d119373aeefbbecc9b86a1c5 (diff) | |
download | external_llvm-734a67cda5a02be1654a2f89b811d7b6cbe3f5e5.zip external_llvm-734a67cda5a02be1654a2f89b811d7b6cbe3f5e5.tar.gz external_llvm-734a67cda5a02be1654a2f89b811d7b6cbe3f5e5.tar.bz2 |
Add support to emit debug info for C++0x nullptr type.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139751 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Analysis/DIBuilder.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/Analysis/DIBuilder.h b/include/llvm/Analysis/DIBuilder.h index 8a6a58e..a29d762 100644 --- a/include/llvm/Analysis/DIBuilder.h +++ b/include/llvm/Analysis/DIBuilder.h @@ -97,6 +97,9 @@ namespace llvm { /// createEnumerator - Create a single enumerator value. DIEnumerator createEnumerator(StringRef Name, uint64_t Val); + /// createNullPtrType - Create C++0x nullptr type. + DIType createNullPtrType(StringRef Name); + /// createBasicType - Create debugging information entry for a basic /// type. /// @param Name Type name. |