We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf437da commit 3334588Copy full SHA for 3334588
[refs]
@@ -1,5 +1,5 @@
1
---
2
-refs/heads/master: 2469cba0b17b24d37c7bc4833c56ce027b8c1632
+refs/heads/master: 409bc6fc2c989b5ee47fb08b3a69c76177bfba53
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
refs/heads/snap-stage3: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
5
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be
trunk/src/libcore/cleanup.rs
@@ -25,7 +25,12 @@ struct Env { priv opaque: () }
25
struct AllocHeader { priv opaque: () }
26
struct MemoryRegion { priv opaque: () }
27
28
-// XXX: i386
+#[cfg(target_arch="x86")]
29
+struct Registers {
30
+ data: [u32 * 13]
31
+}
32
+
33
+#[cfg(target_arch="x86_64")]
34
struct Registers {
35
data: [u64 * 22]
36
}
0 commit comments