diff options
Diffstat (limited to 'clang/lib/CodeGen/CGExprConstant.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGExprConstant.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CGExprConstant.cpp b/clang/lib/CodeGen/CGExprConstant.cpp index e814dfc6153..0df03ec3a27 100644 --- a/clang/lib/CodeGen/CGExprConstant.cpp +++ b/clang/lib/CodeGen/CGExprConstant.cpp @@ -155,9 +155,9 @@ public: ++i; // Promote the size of V if necessary - // FIXME: This should never occur, but currently it can because - // initializer constants are cast to bool, and because clang is - // not enforcing bitfield width limits. + // FIXME: This should never occur, but currently it can because initializer + // constants are cast to bool, and because clang is not enforcing bitfield + // width limits. if (bitFieldInfo.Size > V.getBitWidth()) V.zext(bitFieldInfo.Size); |