[Lldb-commits] [PATCH] D20540: Make sure TestRedefinitionsInInlines.py always actually inlines.

Chaoren Lin via lldb-commits lldb-commits at lists.llvm.org
Mon May 23 14:48:50 PDT 2016


chaoren created this revision.
chaoren added a reviewer: spyffe.
chaoren added a subscriber: lldb-commits.

http://reviews.llvm.org/D20540

Files:
  packages/Python/lldbsuite/test/lang/c/inlines/main.c

Index: packages/Python/lldbsuite/test/lang/c/inlines/main.c
===================================================================
--- packages/Python/lldbsuite/test/lang/c/inlines/main.c
+++ packages/Python/lldbsuite/test/lang/c/inlines/main.c
@@ -1,7 +1,7 @@
 #include <stdio.h>
 
-void test1(int) __attribute__ ((always_inline));
-void test2(int) __attribute__ ((always_inline));
+inline void test1(int) __attribute__ ((always_inline));
+inline void test2(int) __attribute__ ((always_inline));
 
 void test2(int b) {
     printf("test2(%d)\n", b); //% self.expect("expression b", DATA_TYPES_DISPLAYED_CORRECTLY, substrs = ["42"])


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D20540.58153.patch
Type: text/x-patch
Size: 630 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20160523/77505815/attachment.bin>


More information about the lldb-commits mailing list