1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

[JITLink] Fix missing 'static' keyword in unit test.

This commit is contained in:
Lang Hames 2021-05-13 18:59:26 -07:00
parent 6f78a47930
commit 736891b041

View File

@ -57,7 +57,7 @@ static const char BlockContentBytes[] = {
0x68, 0x65, 0x20, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x20, 0x77, 0x69,
0x74, 0x68, 0x20, 0x64, 0x65, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2e, 0x00};
ArrayRef<char> BlockContent(BlockContentBytes);
static ArrayRef<char> BlockContent(BlockContentBytes);
TEST(LinkGraphTest, Construction) {
// Check that LinkGraph construction works as expected.