diff options
| author | Andreas Jonson <andjo403@users.noreply.github.com> | 2021-11-14 14:01:30 +0100 |
|---|---|---|
| committer | Andreas Jonson <andjo403@users.noreply.github.com> | 2021-11-14 16:35:09 +0100 |
| commit | 50ec47aa06e96a195707fb5ee92fcd32299ca272 (patch) | |
| tree | 866f4b070575fc032100f6b86b62da6e012d47e4 /compiler/rustc_codegen_ssa/src/traits | |
| parent | f820d9d4e5af7d298ffdc3145b48e206b65e8e28 (diff) | |
| download | rust-50ec47aa06e96a195707fb5ee92fcd32299ca272.tar.gz rust-50ec47aa06e96a195707fb5ee92fcd32299ca272.zip | |
Remove workaround for the forward progress handling in LLVM
Diffstat (limited to 'compiler/rustc_codegen_ssa/src/traits')
| -rw-r--r-- | compiler/rustc_codegen_ssa/src/traits/intrinsic.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/rustc_codegen_ssa/src/traits/intrinsic.rs b/compiler/rustc_codegen_ssa/src/traits/intrinsic.rs index 78bf22ef9f2..02be6cd360c 100644 --- a/compiler/rustc_codegen_ssa/src/traits/intrinsic.rs +++ b/compiler/rustc_codegen_ssa/src/traits/intrinsic.rs @@ -20,10 +20,6 @@ pub trait IntrinsicCallMethods<'tcx>: BackendTypes { fn abort(&mut self); fn assume(&mut self, val: Self::Value); fn expect(&mut self, cond: Self::Value, expected: bool) -> Self::Value; - /// Emits a forced side effect. - /// - /// Currently has any effect only when LLVM versions prior to 12.0 are used as the backend. - fn sideeffect(&mut self); /// Trait method used to test whether a given pointer is associated with a type identifier. fn type_test(&mut self, pointer: Self::Value, typeid: Self::Value) -> Self::Value; /// Trait method used to inject `va_start` on the "spoofed" `VaListImpl` in |
