mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-07 08:24:27 +00:00
bindings: tab and indentation fixes of my previous commits
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141989 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -309,10 +309,10 @@ LLVMTypeRef LLVMStructCreateNamed(LLVMContextRef C, const char *Name)
|
||||
|
||||
const char *LLVMGetStructName(LLVMTypeRef Ty)
|
||||
{
|
||||
StructType *Type = unwrap<StructType>(Ty);
|
||||
if (!Type->hasName())
|
||||
return 0;
|
||||
return Type->getName().data();
|
||||
StructType *Type = unwrap<StructType>(Ty);
|
||||
if (!Type->hasName())
|
||||
return 0;
|
||||
return Type->getName().data();
|
||||
}
|
||||
|
||||
void LLVMStructSetBody(LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes,
|
||||
@ -533,29 +533,29 @@ LLVMValueRef LLVMMDNode(LLVMValueRef *Vals, unsigned Count) {
|
||||
}
|
||||
|
||||
const char *LLVMGetMDString(LLVMValueRef V, unsigned* Len) {
|
||||
if (const MDString *S = dyn_cast<MDString>(unwrap(V))) {
|
||||
*Len = S->getString().size();
|
||||
return S->getString().data();
|
||||
}
|
||||
*Len = 0;
|
||||
return 0;
|
||||
if (const MDString *S = dyn_cast<MDString>(unwrap(V))) {
|
||||
*Len = S->getString().size();
|
||||
return S->getString().data();
|
||||
}
|
||||
*Len = 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
unsigned LLVMGetNamedMetadataNumOperands(LLVMModuleRef M, const char* name)
|
||||
{
|
||||
if (NamedMDNode *N = unwrap(M)->getNamedMetadata(name)) {
|
||||
return N->getNumOperands();
|
||||
}
|
||||
return 0;
|
||||
if (NamedMDNode *N = unwrap(M)->getNamedMetadata(name)) {
|
||||
return N->getNumOperands();
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
void LLVMGetNamedMetadataOperands(LLVMModuleRef M, const char* name, LLVMValueRef *Dest)
|
||||
{
|
||||
NamedMDNode *N = unwrap(M)->getNamedMetadata(name);
|
||||
if (!N)
|
||||
return;
|
||||
for (unsigned i=0;i<N->getNumOperands();i++)
|
||||
Dest[i] = wrap(N->getOperand(i));
|
||||
NamedMDNode *N = unwrap(M)->getNamedMetadata(name);
|
||||
if (!N)
|
||||
return;
|
||||
for (unsigned i=0;i<N->getNumOperands();i++)
|
||||
Dest[i] = wrap(N->getOperand(i));
|
||||
}
|
||||
|
||||
/*--.. Operations on scalar constants ......................................--*/
|
||||
@ -1583,12 +1583,12 @@ void LLVMInstructionEraseFromParent(LLVMValueRef Inst) {
|
||||
}
|
||||
|
||||
LLVMIntPredicate LLVMGetICmpPredicate(LLVMValueRef Inst) {
|
||||
if (ICmpInst *I = dyn_cast<ICmpInst>(unwrap(Inst)))
|
||||
return (LLVMIntPredicate)I->getPredicate();
|
||||
if (ConstantExpr *CE = dyn_cast<ConstantExpr>(unwrap(Inst)))
|
||||
if (CE->getOpcode() == Instruction::ICmp)
|
||||
return (LLVMIntPredicate)CE->getPredicate();
|
||||
return (LLVMIntPredicate)0;
|
||||
if (ICmpInst *I = dyn_cast<ICmpInst>(unwrap(Inst)))
|
||||
return (LLVMIntPredicate)I->getPredicate();
|
||||
if (ConstantExpr *CE = dyn_cast<ConstantExpr>(unwrap(Inst)))
|
||||
if (CE->getOpcode() == Instruction::ICmp)
|
||||
return (LLVMIntPredicate)CE->getPredicate();
|
||||
return (LLVMIntPredicate)0;
|
||||
}
|
||||
|
||||
/*--.. Call and invoke instructions ........................................--*/
|
||||
|
Reference in New Issue
Block a user