Home | History | Annotate | Download | only in IR

Lines Matching refs:Align

3259     Assert(I.getType()->isPointerTy(), "align applies only to pointer types",
3261 Assert(isa<LoadInst>(I), "align applies only to load instructions, "
3263 Assert(AlignMD->getNumOperands() == 1, "align takes one operand!", &I);
3266 "align metadata value must be an i64!", &I);
3267 uint64_t Align = CI->getZExtValue();
3268 Assert(isPowerOf2_64(Align),
3269 "align metadata value must be a power of 2!", &I);
3270 Assert(Align <= Value::MaximumAlignment,