Displaying 2 results from an estimated 2 matches for "isoslinux".
Did you mean:
isolinux
2018 May 09
1
"Replace locked IO with unlocked IO" optimizations
On 05/08/2018 07:13 PM, Friedman, Eli via llvm-dev wrote:
> It's probably worth going into a little more detail... a lot of people
> read llvmdev, and most of them won't click the link or follow the
> whole discussion.
>
> The transform in question is replacing "fputc(...)" with
> "fputc_unlocked(...)" when we can prove the FILE* doesn't escape.
2013 Sep 25
1
[LLVMdev] arm64 / iOS support
...et/AArch64/AArch64Subtarget.h
index 4ffb605..b5e43d7 100644
--- a/lib/Target/AArch64/AArch64Subtarget.h
+++ b/lib/Target/AArch64/AArch64Subtarget.h
@@ -47,6 +47,7 @@ public:
bool isTargetELF() const { return TargetTriple.isOSBinFormatELF(); }
bool isTargetLinux() const { return TargetTriple.isOSLinux(); }
+ bool isTargetDarwin() const { return TargetTriple.isOSDarwin(); }
bool hasNEON() const { return HasNEON; }
diff --git a/lib/Target/AArch64/AArch64TargetObjectFile.cpp b/lib/Target/AArch64/AArch64TargetObjectFile.cpp
index b4452f5..954cad6 100644
--- a/lib/Target/AArch64/AArch64Target...