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

Unified Diff: gcc/gcc/emit-rtl.c

Issue 2824029: [gcc] Cleanup nacl_special_commands. (Closed) Base URL: ssh://git@chromiumos-git/nacl-toolchain.git
Patch Set: Created 10 years, 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcc/gcc/emit-rtl.c
diff --git a/gcc/gcc/emit-rtl.c b/gcc/gcc/emit-rtl.c
index 069137dbfb89f3a57568dc98adfacaf9c4ef4e3e..a91e7fd0c9bbc32dfd42d712b4ba4c1d9b37beef 100644
--- a/gcc/gcc/emit-rtl.c
+++ b/gcc/gcc/emit-rtl.c
@@ -852,10 +852,6 @@ byte_lowpart_offset (enum machine_mode outer_mode,
return -subreg_lowpart_offset (inner_mode, outer_mode);
}
-/* NaCl require temporary variables in places where usually it's
- not allowed */
-int nacl_special_commands = 0;
-
/* Generate a REG rtx for a new pseudo register of mode MODE.
This pseudo is assigned the next sequential register number. */
@@ -865,7 +861,7 @@ gen_reg_rtx (enum machine_mode mode)
rtx val;
unsigned int align = GET_MODE_ALIGNMENT (mode);
- gcc_assert (can_create_pseudo_p () || nacl_special_commands);
+ gcc_assert (can_create_pseudo_p ());
/* If a virtual register with bigger mode alignment is generated,
increase stack alignment estimation because it might be spilled
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698