[PATCH] D111159: [UnknownProvenance] Introduce UnknownProvenance constant

Amaury SECHET via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Oct 12 15:36:56 PDT 2021


deadalnix requested changes to this revision.
deadalnix added inline comments.
This revision now requires changes to proceed.


================
Comment at: llvm/include/llvm-c/Core.h:1917
+ */
+LLVMValueRef LLVMGetUnknownProvenance(LLVMTypeRef Ty);
+
----------------
Where is the implementation for these?


================
Comment at: llvm/include/llvm/IR/Constants.h:579
+  /// which reduces the amount of casting needed in parts of the compiler.
+  inline PointerType *getType() const {
+    return cast<PointerType>(Value::getType());
----------------
Isn't inline implied by the fact this is defined directly within the class?


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D111159/new/

https://reviews.llvm.org/D111159



More information about the llvm-commits mailing list