Skip to content

Commit 64bcde9

Browse files
committed
---
yaml --- r: 7909 b: refs/heads/snap-stage3 c: c77f1d4 h: refs/heads/master i: 7907: 7fba578 v: v3
1 parent c8f0b2f commit 64bcde9

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
refs/heads/master: 2898dcc5d97da9427ac367542382b6239d9c0bbf
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: fa13fd9d64c3ed60a65e5897467b2d3742aa933f
4+
refs/heads/snap-stage3: c77f1d47f8e2bf2d6ef671da2f9d31a62e4db201
55
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/snap-stage3/src/comp/lib/llvm.rs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,17 +60,19 @@ const LLVMAlwaysInlineAttribute: uint = 4096u;
6060
const LLVMOptimizeForSizeAttribute: uint = 8192u;
6161
const LLVMStackProtectAttribute: uint = 16384u;
6262
const LLVMStackProtectReqAttribute: uint = 32768u;
63-
const LLVMAlignmentAttribute: uint = 2031616u;
6463
// 31 << 16
64+
const LLVMAlignmentAttribute: uint = 2031616u;
6565
const LLVMNoCaptureAttribute: uint = 2097152u;
6666
const LLVMNoRedZoneAttribute: uint = 4194304u;
6767
const LLVMNoImplicitFloatAttribute: uint = 8388608u;
6868
const LLVMNakedAttribute: uint = 16777216u;
6969
const LLVMInlineHintAttribute: uint = 33554432u;
70-
const LLVMStackAttribute: uint = 469762048u;
7170
// 7 << 26
72-
const LLVMUWTableAttribute: uint = 1073741824u;
71+
const LLVMStackAttribute: uint = 469762048u;
72+
const LLVMReturnsTwiceAttribute: uint = 536870912u;
7373
// 1 << 30
74+
const LLVMUWTableAttribute: uint = 1073741824u;
75+
const LLVMNonLazyBindAttribute: uint = 2147483648u;
7476

7577

7678
// Consts for the LLVM IntPredicate type, pre-cast to uint.

0 commit comments

Comments
 (0)