diff options
author | Johnny Chen <johnny.chen@apple.com> | 2010-06-30 20:43:35 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2010-06-30 20:43:35 +0000 |
commit | 20faefd329d608f8f1c3f8773e4e4fe31f73d3d0 (patch) | |
tree | 0633adc7e29ac312a480eb3c6debaa7e6fa3e731 | |
parent | 928658cd701a6964d0fa40a0b600ab4a558736b7 (diff) | |
download | bcm5719-llvm-20faefd329d608f8f1c3f8773e4e4fe31f73d3d0.tar.gz bcm5719-llvm-20faefd329d608f8f1c3f8773e4e4fe31f73d3d0.zip |
Fixed a typo.
llvm-svn: 107318
-rw-r--r-- | lldb/test/bitfields/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/bitfields/main.c b/lldb/test/bitfields/main.c index 5edf5bdd0e0..ca73cc08cba 100644 --- a/lldb/test/bitfields/main.c +++ b/lldb/test/bitfields/main.c @@ -38,7 +38,7 @@ int main (int argc, char const *argv[]) for (i=0; i<(1<<7); i++) bits.b7 = i; //// break $source:$line for (i=0; i<(1<<4); i++) - bits.b4 = i; //// break $source:$line + bits.four = i; //// break $source:$line return 0; //// continue } |