diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2018-01-31 01:51:15 -0500 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2018-01-31 01:51:31 -0500 |
| commit | 5161d70620342749b1995fdaabb39220654cc941 (patch) | |
| tree | ba940c1a85386f1866cd75aab67809b4c0c95755 /src/zig_llvm.cpp | |
| parent | 40ca39d3d5a556e3b5d7298e3a5182f4351bdd17 (diff) | |
| download | zig-5161d70620342749b1995fdaabb39220654cc941.tar.gz zig-5161d70620342749b1995fdaabb39220654cc941.zip | |
*WIP* error sets
Diffstat (limited to 'src/zig_llvm.cpp')
| -rw-r--r-- | src/zig_llvm.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/zig_llvm.cpp b/src/zig_llvm.cpp index 81e22187ed..3e92752d9f 100644 --- a/src/zig_llvm.cpp +++ b/src/zig_llvm.cpp @@ -437,6 +437,10 @@ unsigned ZigLLVMTag_DW_structure_type(void) { return dwarf::DW_TAG_structure_type; } +unsigned ZigLLVMTag_DW_enumeration_type(void) { + return dwarf::DW_TAG_enumeration_type; +} + unsigned ZigLLVMTag_DW_union_type(void) { return dwarf::DW_TAG_union_type; } |
