mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 18:34:09 +00:00
7 lines
202 B
C
7 lines
202 B
C
|
// RUN: %llvmgcc -O2 -S -o - -emit-llvm %s | grep {llvm.cttz.i64} | count 1
|
||
|
// RUN: %llvmgcc -O2 -S -o - -emit-llvm %s | not grep {lshr}
|
||
|
|
||
|
int bork(unsigned long long x) {
|
||
|
return __builtin_ctzll(x);
|
||
|
}
|