From d733430c19ed9453b0b66943b83a4a62c83c6ade Mon Sep 17 00:00:00 2001 From: Vitaly Buka Date: Mon, 21 Jan 2019 02:22:06 +0000 Subject: [fuzzer] Fix test checks broken after license header update llvm-svn: 351717 --- compiler-rt/test/fuzzer/AlignmentAssumptionTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compiler-rt/test/fuzzer/AlignmentAssumptionTest.cpp') diff --git a/compiler-rt/test/fuzzer/AlignmentAssumptionTest.cpp b/compiler-rt/test/fuzzer/AlignmentAssumptionTest.cpp index 58209f0beae..a9c4fc6c2f9 100644 --- a/compiler-rt/test/fuzzer/AlignmentAssumptionTest.cpp +++ b/compiler-rt/test/fuzzer/AlignmentAssumptionTest.cpp @@ -20,7 +20,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { if (Size > 1 && Data[1] == 'i') { Sink = 2; if (Size > 2 && Data[2] == '!') { - __builtin_assume_aligned(Data + 1, 0x8000); + auto r = __builtin_assume_aligned(Data + 1, 0x8000); } } } -- cgit v1.2.3