]> granicus.if.org Git - clang/commitdiff
Remove a FIXME that doesn't belong, there are numerous other places that use
authorDaniel Dunbar <daniel@zuster.org>
Sat, 17 Oct 2009 09:38:57 +0000 (09:38 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Sat, 17 Oct 2009 09:38:57 +0000 (09:38 +0000)
alignment in bits in clang. If we really want to fix this, it should be a bugzilla.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@84328 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/Attr.h

index 6a5e3666a92c46c91fa5cb9dc7ec1c59d84701a5..f7a47364a7f611a5dd49a0c637726d74ac400de8 100644 (file)
@@ -185,7 +185,6 @@ class AlignedAttr : public Attr {
 public:
   AlignedAttr(unsigned alignment) : Attr(Aligned), Alignment(alignment) {}
 
-  // FIXME: Should use addressable units, not bits, to match llvm
   /// getAlignment - The specified alignment in bits.
   unsigned getAlignment() const { return Alignment; }