if (const ArrayType *AT = dyn_cast<ArrayType>(ObjTy->getElementType())) {
- // Deal with multi-dimensional arrays
+ // Deal with multi-dimensional arrays
const ArrayType *SAT = AT;
while ((AT = dyn_cast<ArrayType>(AT->getElementType())))
SAT = AT;
size_t numElems = SAT->getNumElements();
- // We return the remaining bytes, so grab the size of an element
- // in bytes.
+
+ // If numElems is 0, we don't know how large the array is so we can't
+ // make any determinations yet.
+ if (numElems == 0) break;
+
+ // We return the remaining bytes, so grab the size of an element
+ // in bytes.
size_t sizeofElem = SAT->getElementType()->getPrimitiveSizeInBits() / 8;
ConstantInt *Const =
ConstantInt::get(ReturnTy,
((numElems - indx) * sizeofElem)));
}
- }
+ }
// TODO: Add more types here.
}
}
ret i8* %2;
}
+@window = external global [0 x i8]
+
+define i1 @baz() nounwind {
+; CHECK: @baz
+; CHECK-NEXT: llvm.objectsize.i32
+ %1 = tail call i32 @llvm.objectsize.i32(i8* getelementptr inbounds ([0 x i8]* @window, i32 0, i32 0), i1 false)
+ %2 = icmp eq i32 %1, -1
+ ret i1 %2
+}
+
+
declare i32 @llvm.objectsize.i32(i8*, i1) nounwind readonly
\ No newline at end of file