Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ngscopeclient/scopehal
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3d77e65c1e91
Choose a base ref
...
head repository: ngscopeclient/scopehal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c96f62d9b25a
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Aug 11, 2020

  1. LeCroyOscilloscope: fixed missing alignment specifier for constants i…

    …n Convert8BitSamplesAVX2
    azonenberg committed Aug 11, 2020
    Copy the full SHA
    c96f62d View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 scopehal/LeCroyOscilloscope.cpp
6 changes: 3 additions & 3 deletions scopehal/LeCroyOscilloscope.cpp
Original file line number Diff line number Diff line change
@@ -1402,9 +1402,9 @@ void LeCroyOscilloscope::Convert8BitSamplesAVX2(
{
unsigned int end = count - (count % 32);

int64_t ones_x4[] = {1, 1, 1, 1};
int64_t fours_x4[] = {4, 4, 4, 4};
int64_t count_x4[] =
int64_t __attribute__ ((aligned(32))) ones_x4[] = {1, 1, 1, 1};
int64_t __attribute__ ((aligned(32))) fours_x4[] = {4, 4, 4, 4};
int64_t __attribute__ ((aligned(32))) count_x4[] =
{
ibase + 0,
ibase + 1,