Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(99)

Unified Diff: lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp

Issue 7730004: add llvm configure flags to enable/disable target OSes/Envs Base URL: https://llvm.org/svn/llvm-project/llvm/trunk/
Patch Set: Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp ('k') | lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
===================================================================
--- lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp (revision 138335)
+++ lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp (working copy)
@@ -104,7 +104,7 @@
// OpenBSD has buggy support for .quad in 32-bit mode, just split into two
// .words.
- if (T.getOS() == Triple::OpenBSD && T.getArch() == Triple::x86)
+ if (T.isOSOpenBSD() && T.getArch() == Triple::x86)
Data64bitsDirective = 0;
}
« no previous file with comments | « lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp ('k') | lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698