tablegen("OMP") {
visibility = [ ":public_tablegen" ]
- args = [ "-gen-directive-decls" ]
+ args = [ "-gen-directive-decl" ]
output_name = "OMP.h.inc"
}
+tablegen("OMPImpl") {
+ visibility = [ ":public_tablegen" ]
+ args = [ "-gen-directive-impl" ]
+ td_file = "OMP.td"
+ output_name = "OMP.cpp.inc"
+}
+
# Groups all tablegen() calls that create .inc files that are included in
# Frontent/OpenMP's public headers (just one so far).
# //llvm/lib/Frontend/OpenMP has this as a public_dep, so targets depending on
public_deps = [
# Frontend/OpenMP's public headers include OMP.h.inc.
":OMP",
+ ":OMPImpl",
]
}