summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2010-09-30 18:05:47 +0000
committerBill Wendling <isanbard@gmail.com>2010-09-30 18:05:47 +0000
commit1e69e8d75c767129e5d5b83de44ccbc1d8dfceac (patch)
tree26376dd6d77af02e81620e39d350e8b8a7cd3b9c
parent15c8c33d52dbaaef8d0334051d846e38edd50231 (diff)
downloadllvm-1e69e8d75c767129e5d5b83de44ccbc1d8dfceac.tar.gz
Revert r102604. It was breaking 32-bit Linux. See
http://llvm.org/bugs/show_bug.cgi?id=8153 git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_28@115183 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/ADT/SmallVector.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/SmallVector.h b/include/llvm/ADT/SmallVector.h
index 1d6181a95da3..fec6bcd628cc 100644
--- a/include/llvm/ADT/SmallVector.h
+++ b/include/llvm/ADT/SmallVector.h
@@ -61,7 +61,7 @@ protected:
// number of union instances for the space, which guarantee maximal alignment.
struct U {
#ifdef __GNUC__
- char X __attribute__((aligned(8)));
+ char X __attribute__((aligned));
#else
union {
double D;