summaryrefslogtreecommitdiffstats
path: root/compiler-rt/test/fuzzer/AlignmentAssumptionTest.cpp
diff options
context:
space:
mode:
authorVitaly Buka <vitalybuka@google.com>2019-01-21 02:22:06 +0000
committerVitaly Buka <vitalybuka@google.com>2019-01-21 02:22:06 +0000
commitd733430c19ed9453b0b66943b83a4a62c83c6ade (patch)
tree4082788b4262dee0b42fcb5c8c228ea5fc79bda0 /compiler-rt/test/fuzzer/AlignmentAssumptionTest.cpp
parent2b3d8b32860909efdeed21c7a7440c2d6d5e9e37 (diff)
downloadbcm5719-llvm-d733430c19ed9453b0b66943b83a4a62c83c6ade.tar.gz
bcm5719-llvm-d733430c19ed9453b0b66943b83a4a62c83c6ade.zip
[fuzzer] Fix test checks broken after license header update
llvm-svn: 351717
Diffstat (limited to 'compiler-rt/test/fuzzer/AlignmentAssumptionTest.cpp')
-rw-r--r--compiler-rt/test/fuzzer/AlignmentAssumptionTest.cpp2
1 files changed, 1 insertions, 1 deletions
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);
}
}
}
OpenPOWER on IntegriCloud