[Lldb-commits] [lldb] 997bc8b - Add prototype for a function we call.

Jason Molenda via lldb-commits lldb-commits at lists.llvm.org
Wed Dec 18 14:19:02 PST 2019


Author: Jason Molenda
Date: 2019-12-18T14:18:52-08:00
New Revision: 997bc8b2e6b973dd8c9b17414310cac822543f79

URL: https://github.com/llvm/llvm-project/commit/997bc8b2e6b973dd8c9b17414310cac822543f79
DIFF: https://github.com/llvm/llvm-project/commit/997bc8b2e6b973dd8c9b17414310cac822543f79.diff

LOG: Add prototype for a function we call.

Added: 
    

Modified: 
    lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-caching/a.c

Removed: 
    


################################################################################
diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-caching/a.c b/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-caching/a.c
index ab0b6f5bd5e0..f2dde8155186 100644
--- a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-caching/a.c
+++ b/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-caching/a.c
@@ -1,5 +1,7 @@
 typedef float float4;
 
+int a();
+
 int main() {
   float4 f = 4.0f;
   // break here


        


More information about the lldb-commits mailing list