diff options
author | Chris Lattner <sabre@nondot.org> | 2009-11-05 21:21:32 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-11-05 21:21:32 +0000 |
commit | e4a8c64731a22a505a28ba9410146588c98ef21b (patch) | |
tree | d440f2fb7063afc5dc71822156ce16a02a066196 /clang/test/Preprocessor/stdint.c | |
parent | 1ef784db677802b24bfcf9a0c00fa69e69853468 (diff) | |
download | bcm5719-llvm-e4a8c64731a22a505a28ba9410146588c98ef21b.tar.gz bcm5719-llvm-e4a8c64731a22a505a28ba9410146588c98ef21b.zip |
clean up integer preprocessor type definitions, patch by Ken Dyck!
llvm-svn: 86177
Diffstat (limited to 'clang/test/Preprocessor/stdint.c')
-rw-r--r-- | clang/test/Preprocessor/stdint.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/Preprocessor/stdint.c b/clang/test/Preprocessor/stdint.c index d47b51dbc7b..2cda305dcbd 100644 --- a/clang/test/Preprocessor/stdint.c +++ b/clang/test/Preprocessor/stdint.c @@ -323,8 +323,8 @@ // // RUN: clang-cc -E -ffreestanding -triple=msp430-none-none %s | FileCheck -check-prefix MSP430 %s && // -// MSP430:typedef long long int32_t; -// MSP430:typedef unsigned long long uint32_t; +// MSP430:typedef long long int int32_t; +// MSP430:typedef unsigned long long int uint32_t; // MSP430:typedef int32_t int_least32_t; // MSP430:typedef uint32_t uint_least32_t; // MSP430:typedef int32_t int_fast32_t; @@ -423,8 +423,8 @@ // // RUN: clang-cc -E -ffreestanding -triple=pic16-none-none %s | FileCheck -check-prefix PIC16 %s && // -// PIC16:typedef long long int32_t; -// PIC16:typedef unsigned long long uint32_t; +// PIC16:typedef long long int int32_t; +// PIC16:typedef unsigned long long int uint32_t; // PIC16:typedef int32_t int_least32_t; // PIC16:typedef uint32_t uint_least32_t; // PIC16:typedef int32_t int_fast32_t; |