diff options
author | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-12-05 17:26:05 +0000 |
---|---|---|
committer | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-12-05 17:26:05 +0000 |
commit | 35cc02b5c80ac6738c1a3362a822e3d7e4d0c587 (patch) | |
tree | 32d3ee1ddfcad180d619d756a84eeb0df779a6a2 /gcc/function.h | |
parent | fc297ba47e780c3659434d04f3c299b705154d5f (diff) | |
download | gcc-35cc02b5c80ac6738c1a3362a822e3d7e4d0c587.tar.gz |
Merge gimple-tuples-branch into mainline.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@119546 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/function.h b/gcc/function.h index 63d42dcc79f..b37907cc416 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -469,6 +469,11 @@ struct function GTY(()) /* Number of units of floating point registers that need saving in stdarg function. */ unsigned int va_list_fpr_size : 8; + + /* FIXME tuples: This bit is temporarily here to mark when a + function has been gimplified, so we can make sure we're not + creating non GIMPLE tuples after gimplification. */ + unsigned gimplified : 1; }; /* If va_list_[gf]pr_size is set to this, it means we don't know how |