diff options
| author | Dmitri Gribenko <gribozavr@gmail.com> | 2013-01-08 14:47:41 +0000 |
|---|---|---|
| committer | Dmitri Gribenko <gribozavr@gmail.com> | 2013-01-08 14:47:41 +0000 |
| commit | 7daa1a22014c9b5a400dba5e6cfb0ff7cc94b443 (patch) | |
| tree | 8eba71690f6c4894eda00ecdd19e1af7dc42c806 | |
| parent | 31896624da4eec70249da193667b70f1f259e669 (diff) | |
| download | bcm5719-llvm-7daa1a22014c9b5a400dba5e6cfb0ff7cc94b443.tar.gz bcm5719-llvm-7daa1a22014c9b5a400dba5e6cfb0ff7cc94b443.zip | |
CodeGen/compound-assign-overflow.c: include stdint.h in freestanding mode
This hopefully fixes the ARM buildbot.
llvm-svn: 171853
| -rw-r--r-- | clang/test/CodeGen/compound-assign-overflow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/compound-assign-overflow.c b/clang/test/CodeGen/compound-assign-overflow.c index a178e9b02c8..58df89609ed 100644 --- a/clang/test/CodeGen/compound-assign-overflow.c +++ b/clang/test/CodeGen/compound-assign-overflow.c @@ -1,5 +1,5 @@ // Verify proper type emitted for compound assignments -// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -o - %s -fsanitize=signed-integer-overflow,unsigned-integer-overflow | FileCheck %s +// RUN: %clang_cc1 -ffreestanding -triple x86_64-apple-darwin10 -emit-llvm -o - %s -fsanitize=signed-integer-overflow,unsigned-integer-overflow | FileCheck %s #include <stdint.h> |

