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 | f8a6cb1f755fe1530a0fcdf3c4cb1706d7fce822 (patch) | |
tree | e72c50766fb36630c04c226b427272e2fc5605df /test/CodeGen/compound-assign-overflow.c | |
parent | 8c19d3944747fc68119c336bcc594030da0655db (diff) |
CodeGen/compound-assign-overflow.c: include stdint.h in freestanding mode
This hopefully fixes the ARM buildbot.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@171853 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/compound-assign-overflow.c')
-rw-r--r-- | test/CodeGen/compound-assign-overflow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/compound-assign-overflow.c b/test/CodeGen/compound-assign-overflow.c index a178e9b02c..58df89609e 100644 --- a/test/CodeGen/compound-assign-overflow.c +++ b/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> |