Skip to content

Commit 0114c8d

Browse files
committed
Revert r102604. It was breaking 32-bit Linux. See
http://llvm.org/bugs/show_bug.cgi?id=8153 llvm-svn: 115183
1 parent 48545b3 commit 0114c8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/include/llvm/ADT/SmallVector.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class SmallVectorBase {
6161
// number of union instances for the space, which guarantee maximal alignment.
6262
struct U {
6363
#ifdef __GNUC__
64-
char X __attribute__((aligned(8)));
64+
char X __attribute__((aligned));
6565
#else
6666
union {
6767
double D;

0 commit comments

Comments
 (0)