Skip to content

Commit ef743f8

Browse files
committed
---
yaml --- r: 13895 b: refs/heads/try c: c77f1d4 h: refs/heads/master i: 13893: c92eaf9 13891: 4282d9d 13887: 49ae0fc v: v3
1 parent f9ad9f0 commit ef743f8

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
@@ -2,5 +2,5 @@
22
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5-
refs/heads/try: fa13fd9d64c3ed60a65e5897467b2d3742aa933f
5+
refs/heads/try: c77f1d47f8e2bf2d6ef671da2f9d31a62e4db201
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/try/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)