[libc-commits] [libc] [libc][math] implemented dadd and ddiv (PR #100456)

via libc-commits libc-commits at lists.llvm.org
Wed Jul 24 14:29:45 PDT 2024


================
@@ -118,7 +118,7 @@ def load_yaml_file(yaml_file, header_class, entry_points):
         HeaderFile: An instance of HeaderFile populated with the data.
     """
     with open(yaml_file, "r") as f:
-        yaml_data = yaml.safe_load(f)
+        yaml_data = yaml.load(f, Loader=yaml.FullLoader)
----------------
aaryanshukla wrote:

was working on it before in another branch, so it got it from there. During merge conflicts I'll refer to the new addition,

https://github.com/llvm/llvm-project/pull/100456


More information about the libc-commits mailing list