diff options
| author | bjorn3 <bjorn3@users.noreply.github.com> | 2020-03-28 15:21:58 +0100 |
|---|---|---|
| committer | bjorn3 <bjorn3@users.noreply.github.com> | 2020-07-25 12:28:24 +0200 |
| commit | 08fc673190ef43b111a6fea2fadf7de25bf7f282 (patch) | |
| tree | 884379f06ea492bbc2b43f7df30be4e3422a73ba /src/debuginfo | |
| parent | abc99c62595831127e8ac4dfd6ccacd7ccbf9942 (diff) | |
| download | rust-08fc673190ef43b111a6fea2fadf7de25bf7f282.tar.gz rust-08fc673190ef43b111a6fea2fadf7de25bf7f282.zip | |
Handle SIMD vectors in CPlace::place_field
Diffstat (limited to 'src/debuginfo')
| -rw-r--r-- | src/debuginfo/mod.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/debuginfo/mod.rs b/src/debuginfo/mod.rs index 37dc9f4e3c5..2c92fd0e47c 100644 --- a/src/debuginfo/mod.rs +++ b/src/debuginfo/mod.rs @@ -411,6 +411,11 @@ fn place_location<'tcx>( AttributeValue::Exprloc(Expression::new()) } + CPlaceInner::VarLane(_, _, _) => { + // FIXME implement this + + AttributeValue::Exprloc(Expression::new()) + } CPlaceInner::Addr(_, _) => { // FIXME implement this (used by arguments and returns) |
