diff options
author | Devang Patel <dpatel@apple.com> | 2011-05-05 17:06:30 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2011-05-05 17:06:30 +0000 |
commit | 979aba5d09f58703d4ba90914a0cb30834319770 (patch) | |
tree | dcf577bb1b21d52345711e2b2fdefc15d09c7ed6 /clang/test/CodeGen/debug-info.c | |
parent | 441a01a2b8f57d04ea613ce4c22e9fd6e0114788 (diff) | |
download | bcm5719-llvm-979aba5d09f58703d4ba90914a0cb30834319770.tar.gz bcm5719-llvm-979aba5d09f58703d4ba90914a0cb30834319770.zip |
Do not drop uint128 on the floor.
llvm-svn: 130929
Diffstat (limited to 'clang/test/CodeGen/debug-info.c')
-rw-r--r-- | clang/test/CodeGen/debug-info.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/clang/test/CodeGen/debug-info.c b/clang/test/CodeGen/debug-info.c index a84d0b2c6ac..8e7d66558db 100644 --- a/clang/test/CodeGen/debug-info.c +++ b/clang/test/CodeGen/debug-info.c @@ -47,3 +47,10 @@ struct foo2 foo2; typedef int barfoo; barfoo foo() { } + +// CHECK: __uint128_t +__uint128_t foo128 () +{ + __uint128_t int128 = 44; + return int128; +} |