LLVMType.st
changeset 53 bbf3a88e2358
parent 50 dbda820d4d24
child 59 e6ff053f430c
--- a/LLVMType.st	Tue Jan 26 23:45:52 2016 +0000
+++ b/LLVMType.st	Wed Jan 27 11:43:56 2016 +0000
@@ -360,10 +360,9 @@
 vector: numberOfElements
     "Create a fixed-size vector whose elements are of type of receiver."
 
-    self assertIsIntegerUnsigned: numberOfElements.  
-    ^ LLVM VectorType: self _:  numberOfElements
+   self shouldNotImplement
 
-    "Created: / 13-08-2015 / 18:59:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Created: / 12-10-2015 / 18:27:55 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !LLVMType methodsFor:'debugging-dumping'!