You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.205
Former-commit-id: 7f59f7e792705db773f1caecdaa823092f4e2927
This commit is contained in:
parent
5cd5df71cc
commit
8e12397d70
21
external/llvm/test/tools/opt-viewer/Inputs/basic/or.c
vendored
Normal file
21
external/llvm/test/tools/opt-viewer/Inputs/basic/or.c
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
void bar();
|
||||
void foo() { bar(); }
|
||||
|
||||
#include "or.h"
|
||||
|
||||
void Test(int *res, int *c, int *d, int *p, int n) {
|
||||
int i;
|
||||
|
||||
#pragma clang loop vectorize(assume_safety)
|
||||
for (i = 0; i < 1600; i++) {
|
||||
res[i] = (p[i] == 0) ? res[i] : res[i] + d[i];
|
||||
}
|
||||
|
||||
for (i = 0; i < 16; i++) {
|
||||
res[i] = (p[i] == 0) ? res[i] : res[i] + d[i];
|
||||
}
|
||||
|
||||
foo();
|
||||
|
||||
foo(); bar(); foo();
|
||||
}
|
Reference in New Issue
Block a user