Adding handling of __builtin_assume_aligned to IntExprEvaluator does not make
sense because __builtin_assume_aligned returns a pointer (not an integer).
Thanks to Richard for figuring out why this was not doing anything.
I'll add this back in a better place (PointerExprEvaluator perhaps).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@218958
91177308-0d34-0410-b5e6-
96231b3b80d8
return Success(Operand, E);
}
- case Builtin::BI__builtin_assume_aligned:
case Builtin::BI__builtin_expect:
return Visit(E->getArg(0));