diff options
author | dim <dim@FreeBSD.org> | 2013-04-08 18:45:10 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2013-04-08 18:45:10 +0000 |
commit | c72c57c9e9b69944e3e009cd5e209634839581d3 (patch) | |
tree | 4fc2f184c499d106f29a386c452b49e5197bf63d /test/Frontend/hexagon-target-basic.c | |
parent | 5b20025c30d23d521e12c1f33ec8fa6b821952cd (diff) | |
download | FreeBSD-src-c72c57c9e9b69944e3e009cd5e209634839581d3.zip FreeBSD-src-c72c57c9e9b69944e3e009cd5e209634839581d3.tar.gz |
Vendor import of clang trunk r178860:
http://llvm.org/svn/llvm-project/cfe/trunk@178860
Diffstat (limited to 'test/Frontend/hexagon-target-basic.c')
-rw-r--r-- | test/Frontend/hexagon-target-basic.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/Frontend/hexagon-target-basic.c b/test/Frontend/hexagon-target-basic.c new file mode 100644 index 0000000..5f95fa2 --- /dev/null +++ b/test/Frontend/hexagon-target-basic.c @@ -0,0 +1,9 @@ +// RUN: %clang_cc1 -emit-llvm -triple hexagon-unknown-unknown %s -S -o /dev/null +// REQUIRES: hexagon-registered-target + +// Testcase for bug 14744. Empty file is sufficient, since the problem +// was a bad data layout string in the Hexagon target causing an ICE +// when compiling any Hexagon program. + +int x; // In C99, a translation unit needs to have at least one declaration. + |