diff -r 23ae490859cd -r 597181c496f0 LLVMType.st --- a/LLVMType.st Thu Sep 17 17:17:56 2015 +0100 +++ b/LLVMType.st Fri Sep 18 06:19:28 2015 +0100 @@ -263,12 +263,12 @@ | alignmentAsValue | alignmentAsValue := LLVM AlignOf: self. - self assert: alignmentAsValue isConstantValue. - self assert: alignmentAsValue isIntegerValue. + self assert: alignmentAsValue isConstant. + self assert: alignmentAsValue type isIntegerType. ^ LLVMCEXT ValueAsUInt64: alignmentAsValue. "Created: / 14-08-2015 / 09:16:57 / Jan Vrany " - "Modified: / 14-08-2015 / 11:38:43 / Jan Vrany " + "Modified: / 17-09-2015 / 19:25:55 / Jan Vrany " ! kind