about summary refs log tree commit diff
path: root/src/librustc_codegen_llvm/llvm
diff options
context:
space:
mode:
authorJake Goulding <jake.goulding@gmail.com>2016-05-06 09:32:10 -0400
committerDylan McKay <me@dylanmckay.io>2020-06-09 17:34:07 +1200
commit690bb8af510c0cf4099eac512127948180dbc792 (patch)
tree9c587dd0b4bb8b044ca7e603eb284071d06e8756 /src/librustc_codegen_llvm/llvm
parent5d39f1fa2978e2c4532d002f4ce5121bc1c9a007 (diff)
[AVR] Add AVR platform support
Diffstat (limited to 'src/librustc_codegen_llvm/llvm')
-rw-r--r--src/librustc_codegen_llvm/llvm/ffi.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/librustc_codegen_llvm/llvm/ffi.rs b/src/librustc_codegen_llvm/llvm/ffi.rs
index 759c2bf1b85..d37cce56fc6 100644
--- a/src/librustc_codegen_llvm/llvm/ffi.rs
+++ b/src/librustc_codegen_llvm/llvm/ffi.rs
@@ -45,6 +45,8 @@ pub enum CallConv {
     X86_64_Win64 = 79,
     X86_VectorCall = 80,
     X86_Intr = 83,
+    AvrNonBlockingInterrupt = 84,
+    AvrInterrupt = 85,
     AmdGpuKernel = 91,
 }