We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 052a4b5 commit ad4911dCopy full SHA for ad4911d
llvm/lib/Target/X86/X86Subtarget.h
@@ -331,7 +331,9 @@ class X86Subtarget final : public X86GenSubtargetInfo {
331
332
bool isOSWindows() const { return TargetTriple.isOSWindows(); }
333
334
- bool isOSWindowsOrUEFI() const { return isOSWindows() || isUEFI(); }
+ bool isOSWindowsOrUEFI() const { return TargetTriple.isOSWindowsOrUEFI(); }
335
+
336
+ bool isTargetUEFI64() const { return Is64Bit && isUEFI(); }
337
338
bool isTargetWin64() const { return Is64Bit && isOSWindows(); }
339
0 commit comments