summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2010-10-25 12:47:22 +0000
committerDuncan Sands <baldrick@free.fr>2010-10-25 12:47:22 +0000
commit10d3191cf1cb02e52e595eeac9d8bc353113e8f0 (patch)
treecf563199f8aeadfcf51b28626d4906b8eff226e2 /include
parent94cc4feeafbe20e220644def7bb50394c4f9bbc9 (diff)
downloadllvm-10d3191cf1cb02e52e595eeac9d8bc353113e8f0.tar.gz
llvm-10d3191cf1cb02e52e595eeac9d8bc353113e8f0.tar.bz2
llvm-10d3191cf1cb02e52e595eeac9d8bc353113e8f0.tar.xz
Remove deprecated macro names. Hopefully this will unbreak the
smooshlab build. The breakage seems to be due to a collision between LLVM's ATTRIBUTE_UNUSED and gcc's which was previously hidden due to header files being included in a lucky order. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117260 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/Compiler.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/llvm/Support/Compiler.h b/include/llvm/Support/Compiler.h
index 6682c84a7a..6ac7f9c0b0 100644
--- a/include/llvm/Support/Compiler.h
+++ b/include/llvm/Support/Compiler.h
@@ -107,15 +107,4 @@
#define LLVM_ATTRIBUTE_NORETURN
#endif
-// We provide definitions without the LLVM_ prefix briefly while transitioning
-// to always-prefixed names. These will go away as soon as the migration is
-// complete.
-#define ATTRIBUTE_USED LLVM_ATTRIBUTE_USED
-#define ATTRIBUTE_UNUSED LLVM_ATTRIBUTE_UNUSED
-#define ATTRIBUTE_READNONE LLVM_ATTRIBUTE_READNONE
-#define ATTRIBUTE_READONLY LLVM_ATTRIBUTE_READONLY
-#define NORETURN LLVM_ATTRIBUTE_NORETURN
-#define DISABLE_INLINE LLVM_ATTRIBUTE_NOINLINE
-#define ALWAYS_INLINE LLVM_ATTRIBUTE_ALWAYS_INLINE
-
#endif