aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/gcc/tree-stack-overlay.h
diff options
context:
space:
mode:
authorJing Yu <jingyu@google.com>2011-01-30 22:18:29 -0800
committerJing Yu <jingyu@google.com>2011-01-30 22:18:29 -0800
commit4a66e756636cb8364582ea503abd10d76f5b4aa3 (patch)
tree9660204ec085888a0601a6460c967b204a63d5f3 /gcc-4.4.3/gcc/tree-stack-overlay.h
parentb6be42e837844cce5283f42fcfac31e6d66a277d (diff)
downloadtoolchain_gcc-4a66e756636cb8364582ea503abd10d76f5b4aa3.tar.gz
toolchain_gcc-4a66e756636cb8364582ea503abd10d76f5b4aa3.tar.bz2
toolchain_gcc-4a66e756636cb8364582ea503abd10d76f5b4aa3.zip
Upgrade gcc-4.4.3 for Android toolchain.
- Backport upstream patches to support arm hardfp. - Backport gcc-4.5 patches to support -march=atom. Now it is able to build atom toolchain with glibc from this branch - Develop a bunch of optimizations - Fix a few arm dejagnu failures To-do list: - Support Android/atom - Fix ia32 bootstrap failure Change-Id: I5e10dcd21620d4d8ca984d1d1707a76067e61691
Diffstat (limited to 'gcc-4.4.3/gcc/tree-stack-overlay.h')
-rw-r--r--gcc-4.4.3/gcc/tree-stack-overlay.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/gcc-4.4.3/gcc/tree-stack-overlay.h b/gcc-4.4.3/gcc/tree-stack-overlay.h
new file mode 100644
index 000000000..f80e9899e
--- /dev/null
+++ b/gcc-4.4.3/gcc/tree-stack-overlay.h
@@ -0,0 +1,27 @@
+/* A pass for coalescing stack variables.
+ Copyright (C) 2010
+ Free Software Foundation, Inc.
+
+This file is part of GCC.
+
+GCC is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 3, or (at your option)
+any later version.
+
+GCC is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with GCC; see the file COPYING3. If not see
+<http://www.gnu.org/licenses/>. */
+
+
+#ifndef TREE_STACK_OVERLAY_H
+#define TREE_STACK_OVERLAY_H
+
+VEC(tree,gc) *get_original_stack_vars (tree);
+
+#endif /* TREE_STACK_OVERLAY_H */