[cfe-commits] r171853 - /cfe/trunk/test/CodeGen/compound-assign-overflow.c
Dmitri Gribenko
gribozavr at gmail.com
Tue Jan 8 06:47:41 PST 2013
Author: gribozavr
Date: Tue Jan 8 08:47:41 2013
New Revision: 171853
URL: http://llvm.org/viewvc/llvm-project?rev=171853&view=rev
Log:
CodeGen/compound-assign-overflow.c: include stdint.h in freestanding mode
This hopefully fixes the ARM buildbot.
Modified:
cfe/trunk/test/CodeGen/compound-assign-overflow.c
Modified: cfe/trunk/test/CodeGen/compound-assign-overflow.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/compound-assign-overflow.c?rev=171853&r1=171852&r2=171853&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/compound-assign-overflow.c (original)
+++ cfe/trunk/test/CodeGen/compound-assign-overflow.c Tue Jan 8 08:47:41 2013
@@ -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>
More information about the cfe-commits
mailing list