mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 00:01:39 +00:00
fix some sort of weird pasto
llvm-svn: 122560
This commit is contained in:
parent
eec079a470
commit
a6f2b8316f
@ -117,66 +117,6 @@ compiles into:
|
||||
Instead of doing an explicit test, we can use the flags off the sar. This
|
||||
occurs in a bigger testcase like this, which is pretty common:
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
||||
int test1(std::vector<int> &X) {
|
||||
int Sum = 0;
|
||||
for (long i = 0, e = X.size(); i != e; ++i)
|
||||
X[i] = 0;
|
||||
return Sum;
|
||||
}
|
||||
compiles into:
|
||||
|
||||
movq %rsi, %rbx
|
||||
movl %edi, %r14d
|
||||
sarl $2, %r14d
|
||||
testl %r14d, %r14d
|
||||
je LBB0_2
|
||||
|
||||
Instead of doing an explicit test, we can use the flags off the sar. This
|
||||
occurs in a bigger testcase like this, which is pretty common:
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
||||
int test1(std::vector<int> &X) {
|
||||
int Sum = 0;
|
||||
for (long i = 0, e = X.size(); i != e; ++i)
|
||||
X[i] = 0;
|
||||
return Sum;
|
||||
}
|
||||
compiles into:
|
||||
|
||||
movq %rsi, %rbx
|
||||
movl %edi, %r14d
|
||||
sarl $2, %r14d
|
||||
testl %r14d, %r14d
|
||||
je LBB0_2
|
||||
|
||||
Instead of doing an explicit test, we can use the flags off the sar. This
|
||||
occurs in a bigger testcase like this, which is pretty common:
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
||||
int test1(std::vector<int> &X) {
|
||||
int Sum = 0;
|
||||
for (long i = 0, e = X.size(); i != e; ++i)
|
||||
X[i] = 0;
|
||||
return Sum;
|
||||
}
|
||||
compiles into:
|
||||
|
||||
movq %rsi, %rbx
|
||||
movl %edi, %r14d
|
||||
sarl $2, %r14d
|
||||
testl %r14d, %r14d
|
||||
je LBB0_2
|
||||
|
||||
Instead of doing an explicit test, we can use the flags off the sar. This
|
||||
occurs in a bigger testcase like this, which is pretty common in bootstrap:
|
||||
|
||||
#include <vector>
|
||||
int test1(std::vector<int> &X) {
|
||||
int Sum = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user