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

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

Issue 647443005: Change usage of naclcall and nacljmp pseudo-instructions to match x86 gas (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-llvm.git@master
Patch Set: remove NACL_call32d and auto-align bare call Created 6 years, 2 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 | « no previous file | lib/Target/X86/MCTargetDesc/X86MCNaCl.h » ('j') | lib/Target/X86/X86InstrNaCl.td » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
diff --git a/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp b/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
index 3254ae66244e13335ad4e3748e75abf99deb6e6b..5d218b7fe028c226e8c517572cfd546749822671 100644
--- a/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
+++ b/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
@@ -385,6 +385,7 @@ public:
: ELFX86_32AsmBackend(T, OSABI, CPU) {
State.PrefixSaved = 0;
State.PrefixPass = false;
+ State.EmitRaw = false;
}
bool CustomExpandInst(const MCInst &Inst, MCStreamer &Out) {
@@ -400,6 +401,7 @@ public:
: ELFX86_64AsmBackend(T, OSABI, CPU) {
State.PrefixSaved = 0;
State.PrefixPass = false;
+ State.EmitRaw = false;
}
bool CustomExpandInst(const MCInst &Inst, MCStreamer &Out) {
« no previous file with comments | « no previous file | lib/Target/X86/MCTargetDesc/X86MCNaCl.h » ('j') | lib/Target/X86/X86InstrNaCl.td » ('J')

Powered by Google App Engine
This is Rietveld 408576698