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 2e353a6 commit 04b6f54Copy full SHA for 04b6f54
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