teak-llvm/clang/test/InterfaceStubs/inline.h
Puyan Lotfi 678e19d80c [NFC] Fix for InterfaceStubs tests (adding REQUIRES: x86-registered-target).
clang-hexagon-elf bot was failing with:

'No available targets are compatible with triple "x86_64-unknown-linux-gnu"'

Adding a "// REQUIRES: x86-registered-target" to these tests to quiet the bot.

llvm-svn: 363963
2019-06-20 18:28:21 +00:00

6 lines
93 B
C

// REQUIRES: x86-registered-target
INLINE int bar() {
static int var = 42;
return var;
}