LLVMTypeX86_MMX.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 26 Aug 2016 21:50:03 +0100
changeset 76 a1cd10a34b21
parent 33 feabf14b6c1d
permissions -rw-r--r--
llvm_c_ext: Added LLVMSetProcessAllSections() ...as an C interface for llvm::ExecutionEngine::setProcessAllSections(). This may become handy when one wants to control allocation of sections not strictly required for execution.

"
    Copyright (C) 2015-now Jan Vrany

    This code is not an open-source (yet). You may use this code
    for your own experiments and projects, given that:

    * all modification to the code will be sent to the
      original author for inclusion in future releases
    * this is not used in any commercial software

    This license is provisional and may (will) change in
    a future.
"
"{ Package: 'jv:llvm_s' }"

"{ NameSpace: Smalltalk }"

LLVMTypeScalar subclass:#LLVMTypeX86_MMX
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'LLVM-S-Core-Types'
!

!LLVMTypeX86_MMX class methodsFor:'documentation'!

copyright
"
    Copyright (C) 2015-now Jan Vrany

    This code is not an open-source (yet). You may use this code
    for your own experiments and projects, given that:

    * all modification to the code will be sent to the
      original author for inclusion in future releases
    * this is not used in any commercial software

    This license is provisional and may (will) change in
    a future.
"
! !

!LLVMTypeX86_MMX methodsFor:'testing'!

isX86_MMXType
    ^ true

    "Created: / 13-08-2015 / 16:52:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!LLVMTypeX86_MMX class methodsFor:'documentation'!

version_HG

    ^ '$Changeset: <not expanded> $'
! !