reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/llvm-c-test/calc.c
   63       stack[depth - 2] = LLVMBuildBinOp(builder, op_to_opcode(tok),
   64                                         stack[depth - 1], stack[depth - 2], "");
   64                                         stack[depth - 1], stack[depth - 2], "");
   77       off = LLVMBuildGEP(builder, param, &stack[depth - 1], 1, "");
   78       stack[depth - 1] = LLVMBuildLoad(builder, off, "");
   96       stack[depth++] = LLVMConstInt(LLVMInt64Type(), val, 1);
  107   LLVMBuildRet(builder, stack[depth - 1]);
  109   return stack[depth - 1];