diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-10-09 20:35:11 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-10-09 20:35:11 +0000 |
commit | 391d042c4e81eb45123074728a579663d426bc93 (patch) | |
tree | bf00d68af06dc84495673dd86b2b386abf86c2d9 | |
parent | 88dbc5e6c3f29276fb9d4d1110094c08b1550e42 (diff) | |
download | external_llvm-391d042c4e81eb45123074728a579663d426bc93.zip external_llvm-391d042c4e81eb45123074728a579663d426bc93.tar.gz external_llvm-391d042c4e81eb45123074728a579663d426bc93.tar.bz2 |
Remove this now unused variable macro.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165543 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Attributes.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/llvm/Attributes.h b/include/llvm/Attributes.h index fcfacb1..2933def 100644 --- a/include/llvm/Attributes.h +++ b/include/llvm/Attributes.h @@ -53,7 +53,6 @@ struct AttrConst { /// declarations. This is done to avoid static CTORs and at the same time to /// keep type-safety of Attributes. #define DECLARE_LLVM_ATTRIBUTE(name, value) \ - const uint64_t name##_i = value; \ const AttrConst name = {value}; DECLARE_LLVM_ATTRIBUTE(None,0) ///< No attributes have been set |